gpt4 book ai didi

ios - 打开应用程序 3 次后显示 uialertview?

转载 作者:行者123 更新时间:2023-11-28 19:00:26 26 4
gpt4 key购买 nike

是否可以在假设 3 次后打开应用程序时显示 Alertview?这可以用 NSUserDefaults 完成吗?

谢谢!

最佳答案

int launches = [[NSUserDefaults standardUserDefaults] integerForKey:@"launchCount"];
if (launches > 3) {
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"My Alert"
message:@"Some message" delegate:nil
cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alert show];
}
[[NSUserDefaults standardUserDefaults] setInteger:launches+1 forKey:@"launchCount"];

关于ios - 打开应用程序 3 次后显示 uialertview?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26471780/

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