I just converted an iPhone OS 3 app to iOS 4, and once in a while, the screen will flicker and then turn black when the app returns from background mode. Has anyone else experienced this?
I finally resorted to terminating the app before it enters background mode. This is definitely a temporary band aid:
- (void)applicationDidEnterBackground:(UIApplication *)application {
// kill the app rather than letting it go into BG
exit(0);
}
Any advice would be great. Thanks.