其他分享
首页 > 其他分享> > 初尝IOS开发1

初尝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

标签:NSInteger,num1,num2,初尝,text,IOS,NSString,开发,result
来源: https://blog.csdn.net/weixin_30872157/article/details/98307113