我需要实现TerminateWithSuccess。我已经尝试过此选项unrecognized selector sent to instance

AppDelegate *myDelegate = [[[AppDelegate alloc]init]autorelease];
 [myDelegate terminateWithSuccess];


你们中的任何人都知道如何实现terminateWithSuccess而不会出现任何错误?

非常感谢您的帮助。

最佳答案

这样称呼:

[[UIApplication sharedApplication] TerminateWithSuccess];

关于ios - iOS [AppDelegate TerminateWithSuccess]:无法识别的选择器已发送到实例,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17934354/

10-09 16:26