I have been looking around at a few different posts on here concerning this issue and nothing has solved my problem.
After my splash screen loads and displays for ~2 seconds there is a white screen that shows for about 2 seconds and then the app content displays.
This issue only exists on iOS and only when I run the emulator on 3.5" with iOS 6.1 and 7.
I have
<preference name="AutoHideSplashScreen" value="false" />
so I can manually control when the splash screen hides in the deviceready event as such:
function onDeviceReady() {
setTimeout(function () {navigator.splashscreen.hide()},2000);
//more stuff
}
The problem is that this doesn't stop splashscreen from hiding prematurely. I see the exact same behavior except the loading spinner does disappear after 2000.
Sooo..what the heck is going on?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…