Quit app when pressing home

后端 未结 3 544
轻奢々
轻奢々 2020-12-19 17:16

I my testing, when I exit (by pressing the home button) my app, it still is \"running\" in the background, thanks to the multitasking feature. However, I would like it to q

相关标签:
3条回答
  • 2020-12-19 17:46

    I think it's more efficient to suspend an app, when pressing the "Home" button. There's overhead in constantly launching and terminating apps. It's worse for the iOS operating system, and it's worse for user experience - because they need to wait for the app to launch again. Not sure what benefits you gain from terminating an app. If it's for simulation testing, my advice is to avoid that functionality, because your testing environment should be as realistic as possible. If your purpose is to clear cache or to make updates - that can all be done programmatically from subroutines.

    Exiting subroutines

    • applicationWillResignActive
    • applicationDidEnterBackground
    • applicationWillTerminate

    Entering subroutines

    • applicationDidBecomeActive
    • applicationWillEnterForeground
    • applicatonDidFinishLaunching

    If you still insist on terminating an app when the user presses the "Home" button, despite the costs mentioned above - then set the UIApplicationExitsOnSuspend to true in your Info.plist as suggested by Brad Larson.

    0 讨论(0)
  • 2020-12-19 17:59

    I wouldn't recommend trying to control the user's HOME button... deciding for them "exit" or "suspend".

    I WOULD like to have HOME do an instant EXIT in the iPhone simulator... but haven't found any way to do that.

    0 讨论(0)
  • 2020-12-19 18:04

    Your application can opt out of multitasking (see the appropriate section in the iPhone Application Programming Guide) by adding the UIApplicationExitsOnSuspend key to your Info.plist and setting its value to YES.

    In practice, Apple strongly recommends you not do this unless you have a very good reason for this behavior.

    0 讨论(0)
提交回复
热议问题