初尝IOS开发1

时间:2014-05-13 19:56:26   收藏:0   阅读:380

  今天做了个简单的计算机,首先要获得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];
}

初尝IOS开发1,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!