How can I tell my Cocoa application to quit from within the application itself?

心不动则不痛 提交于 2019-12-02 17:29:01
bbum

You can pretty much rest assured that your app is going to get killed at least some of the time. Thus, defending against exits the like of exit(0); is required.

However, NSApplication implements the -terminate: method.

[NSApp terminate: nil]; ought to do what you want.

I would generally suggest posting it via -performSelector:afterDelay: with a delay of 0.0 to force it to happen at the top of the next pass through the event loop.

Example:

[NSApp performSelector:@selector(terminate:) withObject:nil afterDelay:0.0];
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!