vote up 8 vote down star
4

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?

flag

73% accept rate

10 Answers

vote up 6 vote down check

Have you tried exit(0)?

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

link|flag
exit(0); worked like a charm, thanks for the quick response. – emi1faber Dec 10 '08 at 5:54
3  
As doing this is an Apple no-no (may cause your app to be refused in the app-store for non-standard interface), consider August's answer as "the right one." FYI, this answer (Brett's) is correct for ALL C programs, and NSThread for all Cocoa programs. – Olie Dec 18 '08 at 20:57
vote up 1 vote down

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.

link|flag
vote up 30 vote down

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.

link|flag
2  
As I said, it's non-standard behavior and should be avoided. iPhone apps are not desktop apps. Don't treat them as such. – August Dec 10 '08 at 17:13
2  
We have apps that helps people sleep. They want the app to terminate after a set period to reduce battery drain. I think this case is acceptable - as the user is hopefully asleep and can't exit the app manually. – KiwiBastard May 9 at 22:47
2  
I'd still disagree. When they wake up, the app is "gone" leaving the user to wonder what happened. Instead, set a timer in your app, then when the time is up, idle the app -- no activity. An app doing absolutely nothing won't drain the battery.The Springboard is an app, too -- it doesn't shut down just to save energy. Instead, it simply waits for user input. – August May 10 at 13:53
1  
@KiwiBastard: The proper way to handle this situation is to turn off the idle timer so that the device doesn't turn itself off and your app continues to run. When your app's internal timer expires, re-enable the idle timer and let the device turn itself off. – Steve Madsen Nov 5 at 15:06
1  
@jdandrea: Customers have already implicitly accepted Apple's standard EULA or your clients' substitute EULA. I'd expect a rejection from Apple with a EULA dialog at app start-up. – Steve Madsen Nov 5 at 15:09
show 6 more comments
vote up 1 vote down

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:

if ([[UIApplication sharedApplication] respondsToSelector:@selector(terminate)]) {
    [[UIApplication sharedApplication] performSelector:@selector(terminate)];
} else {
    kill(getpid(), SIGINT); 
}
link|flag
2  
No, you don't have to terminate it. The iTunes app, for example, when it can't detect a proper connection simply puts up a screen that says they're not connected. It doesn't quit, it simply informs the user of what's going on. The user then quits by tapping the home button. – August Dec 11 '08 at 14:52
The compass app quits if it's unable to function, though. – jleedev Nov 5 at 15:06
vote up 4 vote down

After some tests, I can say the following:

  • using the private interface : [UIApplication sharedApplication] will cause the app looking like it crashed, BUT it will call - (void)applicationWillTerminate:(UIApplication *)application before doing so;
  • using exit(0); will also terminate the application, but it will look "normal" (the springboard's icons appears like expected, with the zoom out effect), BUT it won't call the - (void)applicationWillTerminate:(UIApplication *)application delegate method.

My advice:

  1. Manually call the - (void)applicationWillTerminate:(UIApplication *)application on the delegate.
  2. Call exit(0);.
link|flag
vote up 2 vote down

Its not really a way to quit the program, but a way to force people to quit.

UIAlertView *anAlert = [[UIAlertView alloc] initWithTitle:@"Hit Home Button to Exit" message:@"Tell em why they're quiting" delegate:self cancelButtonTitle:nil otherButtonTitles:nil];
[anAlert show];
link|flag
vote up -1 vote down

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

link|flag
vote up 0 vote down

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?

link|flag
vote up -1 vote down

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.

link|flag
vote up 0 vote down

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"

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.