我想在按下按钮时创建一个 UIAlertView。在我的游戏中,我想在玩家继续之前告诉他们一些关卡,我想用 UIAlterView 来做。当他们按下按钮时,我该如何做到这一点?
问问题
52 次
1 回答
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];
希望这可以帮助。
于 2013-05-27T14:34:17.523 回答