我正在Xcode 5.1中开发一个mac应用程序。我想在应用程序内单击关闭按钮时终止应用程序。检查图像的链接。
链接如下http://tinypic.com/r/2yn070h/8。
窗口顶部有一个红色按钮。当我单击红色按钮时,应用程序必须终止。终止代码如下
[NSApp terminate:self];
答案 0 :(得分:3)
您唯一需要做的就是在AppDelegate中实现此方法:
- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)theApplication {
return YES;
}
答案 1 :(得分:-1)
要退出应用,请使用命令exit(0)
。