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 call to terminate the application?
|
4
|
|
|
|
|
|
Have you tried exit(0)? Alternatively, [[NSThread mainThread] exit], although I have not tried that it seems like the more appropriate solution. |
||||||
|
|
|
In addition to the above, good, answer I just wanted to add, think about cleaning up your memory. After your application exits, the iPhone OS will automatically clean up anything your application left behind, so freeing all memory manually can just increase the amount of time it takes your application to exit. |
||
|
|
|
|
On the iPhone there is no concept of quitting an app. The only action that should cause an app to quit is touching the Home button on the phone, and that's not something developers have access to. According to Apple, your app should not terminate on its own. Since the user did not hit the Home button, any return to the Home screen gives the user the impression that your app crashed. This is confusing, non-standard behavior and should be avoided. |
||||||||||||||||||||
|
|
|
Hm, you may 'have to' quit the application if, say, your application requires an internet connection. You could display an alert and then do something like this:
|
||||||
|
|
|
After some tests, I can say the following:
My advice:
|
||
|
|
|
|
Its not really a way to quit the program, but a way to force people to quit.
|
||
|
|
|
|
Hi, [[UIApplication sharedApplication] terminateWithSuccess]; It worked fine and automatically calls - (void)applicationWillTerminateUIApplication *)application delegate. to remove compile time warning add this code @interface UIApplication(MyExtras) - (void)terminateWithSuccess; @end |
||
|
|
|
|
Oh yeah, using an undocumented interface -- great idea. That's always going to work in future versions of the SDK, right? |
||
|
|
|
|
Yes, and since there are no any recommended way, let's use "-(int) terminate {return 1/0;}" instead - it will work in ALL future versions, seriously. |
||
|
|
|
|
My App has been rejected recently bc I've used an undocumented method. Literally: "Unfortunately it cannot be added to the App Store because it is using a private API. Use of non-public APIs, which as outlined in the iPhone Developer Program License Agreement section 3.3.1 is prohibited: "3.3.1 Applications may only use Documented APIs in the manner prescribed by Apple and must not use or call any private APIs." The non-public API that is included in your application is terminateWithSuccess" |
||
|
|
