Hi guys!
I have a hard time to understand my iPhone Application strange behavior in iOS4.
- Exit my app with Home button ->
applicationWillResignActive
,didEnterBackground
is called, - Open my app ->
applicationDidBecomeActive
,didEnterForground
is called. Everything is normal here. - Exit my app with Home button ->
applicationWillResignActive
,didEnterBackground
is called, - Double tap Home button, exit my app with "minus" button.
- Open my app ->
applicationDidBecomeActive
,didEnterForground
is called. - Exit my app with Home button ->
applicationWillTerminate
is called. - Debugger stopped. Program exited with status value:0.
(4, 5 , 6) . What is really happening when I press minus button? Shouldn't application terminate and next time I open application (BOOL)application:(UIApplication*)application didFinishLaunching
be called?
Can anyone help me understand this?