Proper way to exit iPhone application?

前端 未结 25 2698
难免孤独
难免孤独 2020-11-22 01:54

I am programming an iPhone app, and I need to force it to exit due to certain user actions. After cleaning up memory the app allocated, what\'s the appropriate method to ca

25条回答
  •  不知归路
    2020-11-22 02:49

    Have you tried exit(0)?

    Alternatively, [[NSThread mainThread] exit], although I have not tried that it seems like the more appropriate solution.

提交回复
热议问题