When my app is run in the iPhone simulator, the delegate method

- (void)applicationWillTerminate:(UIApplication *)application

is only called the first time I hit the iPhone simulator's home button.

After the home button is pressed and the app is launched again, hitting the home button does not call the delegate method.

What is going on here? Am I misunderstanding something fundamental?

link|improve this question

feedback

4 Answers

up vote 22 down vote accepted

I suspect that it is being called, but that you are getting confused because after you hit the Home button in the Simulator, you've ended the current session in Xcode. You probably have an NSLog in your applicationWillTerminate: method, yes? Once you hit the Home button, NSLogs no longer show up in Xcode's run console. If you open /Applications/Console.app I expect they'll show up there.

link|improve this answer
Yes you are correct. Calls to NSLog() do not appear after the first time returned to the Home screen. However all other function calls called from the delegate continue to operate as per usual. Thanks! – firstresponder Dec 15 '08 at 11:34
2  
Xcode no longer pays attention to the logging output from the iPhone Simulator after you terminate the program and return to Springboard. Everything still functions exactly the same except output won't go to Xcode's run log. – Kevin Ballard Dec 15 '08 at 12:43
I can we differentiate the (application termination due to some phone call and resuming it from previous state) and (application launch) ? – srikanth rongali May 12 '10 at 14:36
feedback
- (void)applicationWillTerminate:(UIApplication *)application

is called when the application "terminates". If you are using iOS then the app will NOT terminate when the home button is pressed, unless you have disabled multi-tasking for your app or the user does not have a "multi-tasking supported" device.

- (void)applicationDidEnterBackground {

is now used when the user presses the home button. Unless (as I previously said) you have disabled multi-tasking for your app or the user does not have a "multi-tasking supported" device.

link|improve this answer
feedback

/Applications/Console.app is... There's a folder called "Applications" on the Dock. Open it and then find and open the "Utilities" sub folder. In there you'll find an application called "Console". That's the one.

Good luck

link|improve this answer
feedback

to lunch consol in xcode ==> Command + Shift + R


link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.