我想按一下按钮创建一个UIAlertView。在我的游戏中,我想在玩家继续之前告诉玩家一点水平,我想用UIAlterView来做。当他们按下按钮时,我该怎么做呢?
答案 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];
希望这有帮助。