如何设置UIAlertView消息

时间:2013-12-24 23:33:54

标签: objective-c xcode uialertview

如何创建UIAlertView警报?如何通过按下按钮或通过应用程序启动来显示UIAlertView?

1 个答案:

答案 0 :(得分:0)

阅读this,了解如何创建具有关联操作的按钮。

然后将此代码放入按钮操作中,以显示带有自定义标题和消息的警报视图。

[[[UIAlertView alloc] initWithTitle:@"A Title"
                            message:@"A Message"
                           delegate:nil
                  cancelButtonTitle:@"OK"
                  otherButtonTitles:nil] show];