如何在按下按钮时添加UIAlertView?

时间:2013-05-19 20:53:10

标签: uibutton uialertview

我想按一下按钮创建一个UIAlertView。在我的游戏中,我想在玩家继续之前告诉玩家一点水平,我想用UIAlterView来做。当他们按下按钮时,我该怎么做呢?

1 个答案:

答案 0 :(得分:0)

在你的动作按钮功能中输入以下代码:

UIAlertView *message = [[UIAlertView alloc] initWithTitle:@"Title of the popup"
                                                  message:@"The message to display to the user"
                                                 delegate:nil
                                        cancelButtonTitle:@"OK"
                                        otherButtonTitles:nil];
[message show];

如果您不使用ARC,则应在使用“show”方法后释放已分配的变量:

[message release];

希望这有帮助。

来源:http://www.mobiledev.nl/popup-message-in-ios/