zoukankan      html  css  js  c++  java
  • UIKit基础:3.利用UITextField-UILabel-Tag标签-UIButton控件打造简易计算器

    前言:

    之前我们使用了纯代码的形式做了一个小Demo, 那么这次我们使用StoryBoard来做Demo, 为什么这次会选择StoryBoard呢? 前面我也说过, 纯代码虽然是非常的灵活, 但我们也要劳逸结合, 哪个方便就使用哪个, 要保证效率的情况下选择最优.


    开始:

    说了要使用StoryBoard来做项目了, 那肯定是少不了拖控件, 还有连线啦, 下面我们就来试试看吧.

    我们需要的控件:两个TextField, 三个Label, 四个UIButton, 位置自己调整, 我这里使用的是iPhone5s的分辨率


    下面是效果图:



    拖拽好以后我们打开辅助编辑器:



    然后把我们需要的控件关联到ViewController.h文件里

    PS: 这里我把四个UIButton关联到一个方法里去, 下面会有详细讲解.




    关联完之后, 我们还需要设置一下UIButton的小细节, 就是Tag值:



    StoryBoard的所有细节完成了之后, 我们就切换到ViewController.m文件. 把我们的方法实现:

    - (IBAction)operationButtons:(UIButton *)sender{
        NSString *text1 = [_text1 text];
        NSString *text2 = [_text2 text];
        
        NSInteger num1 = [text1 integerValue];
        NSInteger num2 = [text2 integerValue];
        
        switch (sender.tag) {
            case 0:
                [_operationLable setText:[NSString stringWithFormat:@"+"]];
                [_resultLable setText:[NSString stringWithFormat:@"%ld", num1 + num2]];
                break;
            case 1:
                [_operationLable setText:[NSString stringWithFormat:@"-"]];
                [_resultLable setText:[NSString stringWithFormat:@"%ld", num1 - num2]];
                break;
            case 2:
                [_operationLable setText:[NSString stringWithFormat:@"*"]];
                [_resultLable setText:[NSString stringWithFormat:@"%ld", num1 * num2]];
                break;
            case 3:
                [_operationLable setText:[NSString stringWithFormat:@"/"]];
                [_resultLable setText:[NSString stringWithFormat:@"%ld", num1 / num2]];
                break;
            default:
                break;
        }
    }


    解释一下上面的代码:

    1. 取出输入两个TextField所输入的数字.

    2. 将取出的数字转换成NSInteger类型

    3. 在switch里, 根据sender的tag值来进行运算(也就是我们刚刚在StoryBoard设置的四个UIButton的tag值).

    4. 将运算好的结果保存显示到Label上.



    最终的效果大家试试看就知道了, 这里只做了整数的计算器, 关于小数也是很简单的, 大家稍微摸索一下就ok了

    这里是我的加法效果图




    好了, 这次就到这里, 下次我们再见~~

  • 相关阅读:
    Hive初步认识,理解Hive(一)
    Beeline里面执行hive脚本 函数nvl2()与replace()报错
    Navicat定时在MySQL与MySQL数据库之间自动传输数据
    Hive 报错 Error while compiling statement: FAILED: ParseException line 1:0 character '' not supported here (state=42000,code=40000)
    关于大数据T+1执行流程
    Hive部分函数解析
    关于JDK动态代理与Cglib代理
    关于Excel做表小知识记录
    Java实现自定义注解开发
    bzoj1179[Apio2009]Atm
  • 原文地址:https://www.cnblogs.com/iOSCain/p/4282799.html
Copyright © 2011-2022 走看看