I am writing an application using phonegap for iOS. I am trying to show splash screen when application enters to background.
(void)applicationWillResignActive:(UIApplication *)application
[...]
In applicationWillResignActive:
I am calling a JavaScript function and using cordova's method cordova.exec(null,null, "SplashScreen, "show", [])
to show splash screen. But it seems like, this is not working.
When I resume the app, the application brings the previous state first and then switches to splash screen, but I want to show the splash screen when the app resumes. How can I accomplish that?