Last active
December 29, 2015 15:19
-
-
Save jaywcjlove/7689832 to your computer and use it in GitHub Desktop.
//点击关闭按钮关闭应用程序代理方法
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)sender{ | |
return YES; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
[[NSApplication sharedApplication] terminate:nil];
}