gpt4 book ai didi

ios - 当达到触发条件时弹出警报 View

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:21:08 25 4
gpt4 key购买 nike

我正在尝试在 Xcode 上制作游戏,我希望在用户达到特定分数(比如 100 分)时弹出一条警告消息。我有在 View 加载时弹出警报的代码。但我想要的是仅当玩家达到特定分数时才显示警报消息。

游戏的计分方式是这样的:每次玩家点击/点击一个按钮,他得到一分,所以他在点击 100 次后得到 100 分。

下面是在 View 加载时弹出警告消息的代码:

- (void)viewDidLoad
{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Tile" message:@"This is the message" delegate:nil cancelButtonTitle:@"Dismiss" otherButtonTitles:nil];

[alert show];
[alert release];

[super viewDidLoad];
}

最佳答案

在您的按钮操作调用方法中,当点达到 100 时显示警报。

例如

- (void) buttonAction {
point++;
if(point == 100)
[self showAlert];
}

- (void) showAlert {

UIAlertView *alert = [[UIAlertView alloc]

initWithTitle:@"Tile"
message:@"This is the message"
delegate:nil
cancelButtonTitle:@"Dismiss"
otherButtonTitles:nil];

[alert show];
[alert release];
}

关于ios - 当达到触发条件时弹出警报 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11360778/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com