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.
我目前正在开发一个应在主窗口关闭时终止的应用程序。到目前为止,我使用过:
- (BOOL) applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)application { return YES; }
但是,当您打开首选项窗口然后关闭主窗口时,应用程序不会终止,因为首选项窗口将保持打开状态。
我基本上是在寻找一种在关闭主窗口时终止应用程序的方法。
您可以使用 :
[NSApp terminate: nil];