func applicationShouldTerminateAfterLastWindowClosed(sender: NSApplication) -> Bool { NSApplication.sharedApplication().terminate(self) return true }
内部适合我的工作。
对于Swift 4.2
func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool { NSApplication.shared.terminate(self) return true }
Swift 4.1的更新:
func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool { NSApplication.shared.terminate(self) return true }