How do I make my iPhone app start at the same place each time, i.e. my 'home' screen? I do NOT want the user to return to where they were last time they played - right in the middle of gameplay - but that's what's happening. Thanks in advance for any tips!
|
feedback
|
|
You need to set the | |||||||
feedback
|
/* Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. */ | |||||||
feedback
|
|
This is presumably only happening because your app isn't really being stopping - it's simply being backgrounded. (If you double click the home button whilst viewing springboard does it show up at the bottom? If so, it's still running.) You can disable this behaviour (so your app quits when the user hits the home button) by setting the Alternatively, you could simply capture the | |||
feedback
|
|
Set | |||
feedback
|