Proper way to exit iPhone application?

前端 未结 25 2695
难免孤独
难免孤独 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:51

    It may be appropriate to exit an app if it is a long lived app that also executes in the background, for example to get location updates (using the location updates background capability for that).

    For example, let's say the user logs out of your location based app, and pushes the app to the background using the home button. In this case your app may keep running, but it could make sense to completely exit it. It would be good for the user (releases memory and other resources that don't need to be used), and good for app stability (i.e. making sure the app is periodically restarted when possible is a safety net against memory leaks and other low memory issues).

    This could (though probably shouldn't, see below :-) be achieved with something like:

    - (void)applicationDidEnterBackground:(UIApplication *)application
    {
        if (/* logged out */) {
            exit(0);
        } else {
           // normal handling.
        }
    }
    

    Since the app would then exit out of the background it will not look wrong to the user, and will not resemble a crash, providing the user interface is restored the next time they run the app. In other words, to the user it would not look any different to a system initiated termination of the app when the app is in the background.

    Still, it would be preferable to use a more standard approach to let the system know that the app can be terminated. For example in this case, by making sure the GPS is not in use by stopping requesting location updates, including turning off show current location on a map view if present. That way the system will take care of terminating the app a few minutes (i.e. [[UIApplication sharedApplication] backgroundTimeRemaining]) after the app enters the background. This would get all the same benefits without having to use code to terminate the app.

    - (void)applicationDidEnterBackground:(UIApplication *)application
    {
        if (/* logged out */) {
           // stop requesting location updates if not already done so
           // tidy up as app will soon be terminated (run a background task using beginBackgroundTaskWithExpirationHandler if needed).
        } else {
           // normal handling.
        }
    }
    

    And of course, using exit(0) would never be appropriate for the average production app that runs in the foreground, as per other answers that reference http://developer.apple.com/iphone/library/qa/qa2008/qa1561.html

提交回复
热议问题