Proper way to exit iPhone application? Proper way to exit iPhone application? ios ios

Proper way to exit iPhone application?


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.


Have you tried exit(0)?

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


exit(0) appears to a user as crashes, so show a confirmation message to user. After confirmation suspend(home button press programmatically) and wait 2 seconds while app is going background with animation then exit behind user's view

-(IBAction)doExit{    //show confirmation message to user    UIAlertView* alert = [[UIAlertView alloc] initWithTitle:@"Confirmation"                                                 message:@"Do you want to exit?"                                                delegate:self                                       cancelButtonTitle:@"Cancel"                                       otherButtonTitles:@"OK", nil];    [alert show];}-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{    if (buttonIndex != 0)  // 0 == the cancel button    {        //home button press programmatically        UIApplication *app = [UIApplication sharedApplication];        [app performSelector:@selector(suspend)];        //wait 2 seconds while app is going background        [NSThread sleepForTimeInterval:2.0];        //exit app when app is in background        exit(0);    }}