gpt4 book ai didi

ios - 第二次启动后制作 UIAlertView 展示

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:09:35 26 4
gpt4 key购买 nike

如果这不可能,那么在使用应用程序 3 分钟后我该如何做?这将用于“给我们评分”提醒,但我希望用户在要求他们评分之前有一些时间实际使用该应用程序。

最佳答案

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)options {
// ...
if ([self plusPlusLaunchCount] == 2) {
[self showRateUsAlert];
}
return YES;
}

- (void)showRateUsAlert {
// show the Rate Us alert view
}

- (NSInteger)plusPlusLaunchCount {
static NSString *Key = @"launchCount";
NSInteger count = 1 + [[NSUserDefaults standardUserDefaults] integerForKey:Key];
[[NSUserDefaults standardUserDefaults] setInteger:count forKey:Key];
return count;
}

关于ios - 第二次启动后制作 UIAlertView 展示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11076960/

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