I've noticed something that happens in every app i develop. It's usually not a concern but in this specific app it would be great if i could "fix" it, if it's even a bug.
Steps to re-produce the issue:
- Start app , splash screen shows for approx. 3 seconds and app starts.
- Press home button, app goes to background.
- Bring app back from background (double clicking home screen and chosing it), shows the splash for half a second or so, and then the app goes back up .
Is it possible to get rid of that splash screen popping up for half a second on the way back from background? Its really a problem for this specific app.
Application does not run in backgroundset to NO (raw key:UIApplicationExitsOnSuspend). Some apps WANT to be "killed" when the user backgrounds them, so they use this key. However, to resume your app you have to allow it to run in background (paused really, doesn't have to actually work in background). – Sam Nov 15 '11 at 22:15application:didFinshLaunchingWithOptions:twice (verify with breakpoint or NSLog)? I'm not sure how you would get the splash screen (default.png) to appear everytime you launch the app without using theUIApplicationExistsOnSuspendkey (which kills app when you background it). Unless... the app inadvertantly is being killed on exit like a SIGABRT inapplicationDidEnterBackground:orapplicationWillResignActive:. – Sam Nov 15 '11 at 22:21UIApplicationExistsOnSuspendis NO (meaning app is NOT killed when backgrounded). So make sure the key / value pair for this is missing or that it is set to NO so that your app is NOT being killed when backgrounded. - sorry for the caps on no and not, just trying to be as clear as possible. Also, when you background the app your debugging session shouldn't end, so you should be able to set a breakpoint onapplicationWillEnterForeground:to verify that your session didn't end (app didn't die). – Sam Nov 15 '11 at 22:43