我在Xcode中创建了一个AppleScript应用程序,我想知道在窗口关闭后如何让应用程序退出。
答案 0 :(得分:7)
在AppDelegate中添加applicationShouldTerminateAfterLastWindowClosed:方法,例如:
on applicationShouldTerminateAfterLastWindowClosed_(sender)
return true
end applicationShouldTerminateAfterLastWindowClosed_