如何创建UIAlertView警报?如何通过按下按钮或通过应用程序启动来显示UIAlertView?
答案 0 :(得分:0)
阅读this,了解如何创建具有关联操作的按钮。
然后将此代码放入按钮操作中,以显示带有自定义标题和消息的警报视图。
[[[UIAlertView alloc] initWithTitle:@"A Title"
message:@"A Message"
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil] show];