Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
2.1.0
Description
When running on a iPhone 5, the Splash screen show is the Default.png instead of the Default-568h.png file.
To fix, in the CDVViewController.m file, in the showSplashScreen function, look for this bit of code:
else // not iPad
{
orientedLaunchImageFile = launchImageFile;
}
and change it to
else // not iPad
{
if ( [UIScreen mainScreen].bounds.size.height == 568 ) // or some other method of determining if on iPhone 5
else
{ orientedLaunchImageFile = launchImageFile; }}