当前位置:  开发笔记 > IOS > 正文

OS X app swift 2.2上的关闭按钮事件

如何解决《OSXappswift2.2上的关闭按钮事件》经验,为你挑选了2个好方法。



1> Ben Rockey..:
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
    }


只需返回“ true”,应用程序就应终止,正如方法名所示。

2> TDM..:

Swift 4.1的更新:

func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
    NSApplication.shared.terminate(self)
    return true
}

推荐阅读
linjiabin43
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有