今天做了个简单的计算机,首先要获得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];
}
时间: 2024-10-01 03:36:26