如果我想将文本字段中的文本插入警报视图,我不会使用此代码吗?文本应该在哪里,它说:。谢谢你的帮助!
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Title" message:@"Message: %@",textField.text delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alert show];
[alert release];
答案 0 :(得分:1)
使用此:
... message:[NSString stringWithFormat:@"Message: %@",textField.text] ...