如何将文本字段中的文本插入警报视图

时间:2011-08-24 04:03:06

标签: iphone objective-c ios ipad uialertview

如果我想将文本字段中的文本插入警报视图,我不会使用此代码吗?文本应该在哪里,它说:。谢谢你的帮助!

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Title" message:@"Message: %@",textField.text delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];

[alert show];
[alert release];

1 个答案:

答案 0 :(得分:1)

使用此:

... message:[NSString stringWithFormat:@"Message: %@",textField.text] ...