I want to add splash screen on my app when the app is resumed from the background.Is this possible? Thanks in advance
You can update your view stack in -[UIApplicationDelegate applicationWillResignActive:].
-[UIApplicationDelegate applicationWillResignActive:]
The changes will be visible when the app resumes, and you can remove the splash screen again in -[UIApplicationDelegate applicationDidBecomeActive:].
-[UIApplicationDelegate applicationDidBecomeActive:]