I created an App which is compatible to iPhone and iPad. Because it is based on HTML (PhoneGap) the App itself is the same for both devices (HTML scales well!). But the launch screen image does not fill out the display on the iPad upon launch.
In my Resorces folder there is only the iPhone launch image which is to small for the iPad, how can I add an other one for the iPad?
You need to specify the launch image file (
UILaunchImageFile) property in your application’s info.plist:For example, if you set the value for the key
UILaunchImageFile~ipadtoiPad, your file names should beiPad-Portrait.pngandiPad-Landscape.png. You could similarly change it for the iPhone, or use the default (Default.png) for iPhone.This is defined in Information Property List Files.