初尝IOS开发1

原文链接:http://www.cnblogs.com/caishugeng/p/3721103.html

  今天做了个简单的计算机,首先要获得Text的内容,然后转换为整型,在进行相加,最后把结果转换为字符串,再赋值给label.text,具体如下

- (IBAction)jisuan:(id)sender {

//前两行代码把输入Text field的内容取出来
NSString *text1 = _num1.text;
NSString *text2 = _num2.text;

//下面这两行代码把字符转换为整型
NSInteger num1 = [text1 integerValue];
NSInteger num2 = [text2 integerValue];

//把两个数相加
NSInteger result = num1 + num2;

//通过stringWithFormat把结果转换为字符型
NSString *result1 =[NSString stringWithFormat:@"%d",result];

//把结果赋值给label。text显示出来
_result.text = result1;

//此行代码的作用是隐藏键盘
[self.view endEditing:YES];
}

转载于:https://www.cnblogs.com/caishugeng/p/3721103.html

上一篇:UIPickerView基本使用


下一篇:API流量与爬虫管理:Akamai企业安全两大最新关注点