vote up 3 vote down star

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?

flag

3 Answers

vote up 11 vote down check

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|flag
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
1  
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
vote up 0 vote down

My question to Kevin is how did the log appear on the Xcode console the first time?

link|flag
vote up -4 vote down

I suspect this is one of the many areas where the iPhone simulator does not match a real device.

link|flag

Your Answer

Get an OpenID
or

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