Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
第一次下载并打开我的应用程序时,我希望“帮助”窗口自动打开。
我将如何继续这样做?注意我只希望它在第一次启动应用程序时自动打开。
Mac OS X 雪豹,Xcode 3.2.6
执行此操作的方法有很多,其中一种是NSUserDefaults用于存储值“ firstRun”并将其设置为YES首次运行时。显然,如果您没有找到 的值firstRun或它被设置为NO,那么它是您的第一次运行。
NSUserDefaults
firstRun
YES
NO
https://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/nsuserdefaults_Class/Reference/Reference.html