Hi is it possible and legally to show the splashscreen when my app return from background.. If yes.. what I have to insert into this code? Thanks
- (void)applicationWillEnterForeground:(UIApplication *)application
{
}
Hi is it possible and legally to show the splashscreen when my app return from background.. If yes.. what I have to insert into this code? Thanks
- (void)applicationWillEnterForeground:(UIApplication *)application
{
}
I needed the same thing in few of my applications - simply add a UIImageView to window. And show it once application goes to background and fade it out after a delay :)
See this answer for more details: https://stackoverflow.com/a/10967054/894671