gpt4 book ai didi

cocoa - 在特定启动时显示 NSAlert

转载 作者:行者123 更新时间:2023-12-03 18:02:20 25 4
gpt4 key购买 nike

我需要在应用程序的第 3 次、第 10 次和第 20 次启动时显示 NSAlert,到目前为止我已尝试过:

/* Note that the kLaunchCount is incremented as a Number in a dictionary */
if([[[NSUserDefaults standardUserDefaults] objectForKey:@"kLaunchCount"] intValue] == 1||2||3)
{
/* show the NSAlert */
}

上面的代码显示每次启动时的NSAlert

最佳答案

该代码解析为 ...||2||3,它将始终返回 true(因为任何 || 2 都是 true)。您应该将启动计数放入变量 n 中,然后使用 n == 3 || n == 10 || n == 20 作为测试。

关于cocoa - 在特定启动时显示 NSAlert,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5048678/

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