Does didFinishLaunchingWithOptions happens after:
- applicationWillResignActive
- applicationDidEnterBackground
- applicationWillEnterForeground
Or does it happen only after applicationWillTerminate?
And when applicationDidBecomeActive happens then? Thanks.
From the docs:
It happens when the user opens your app. Followed by applicationDidBecomeActive when the app is ready to receive user events.
When the user presses the home button the following methods are called (by this order):
– applicationWillResignActive
– applicationDidEnterBackground
When the user opens your app again, and it is in background:
Finally, applicationWillTerminate is called instead of applicationDidEnterBackground on devices with iOS 3.x or earlier. Or with devices that do not support background apps (like the 3G).