在AppleScript中关闭窗口后退出应用程序

时间:2011-12-03 05:26:38

标签: xcode applescript

我在Xcode中创建了一个AppleScript应用程序,我想知道在窗口关闭后如何让应用程序退出。

1 个答案:

答案 0 :(得分:7)

在AppDelegate中添加applicationShouldTerminateAfterLastWindowClosed:方法,例如:

on applicationShouldTerminateAfterLastWindowClosed_(sender)
    return true
end applicationShouldTerminateAfterLastWindowClosed_