我想在两列中使用用户在文本字段中输入的值,并执行必要的操作以生成所需的输出并在XCODE中将结果显示为警报消息? 有什么方法可以使用文本字段执行计算吗?
得到了ans:
-(IBAction)buttonPressed1:(id)sender
{
// You may also need to check if your string data is a valid number
int result = [Number1.text intValue] + [Number2.text intValue];
SumAnswer.text = [NSString stringWithFormat:@"%d", result];
}
答案 0 :(得分:1)
以上代码是正确的。这将在第三个文本框中显示结果。
如果您想在UIAlertView
尝试 UIAlertView
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Result !!" message:[NSString stringWithFormat:@"%d", result]; delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
// optional - add more buttons:
[alert addButtonWithTitle:@"Yes"];
[alert show];
不要忘记在.h课程中添加UIAlertViewDelegate