在想要关闭应用程序时程序往往退出到dock栏中并未直接退出,利用如下方法可实现直接退出:
/**
* 在APPDelegate中实现如下的方法
*
*
*/
- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)sender {
return YES;
}
在想要关闭应用程序时程序往往退出到dock栏中并未直接退出,利用如下方法可实现直接退出:
/**
* 在APPDelegate中实现如下的方法
*
*
*/
- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)sender {
return YES;
}