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?

link|improve this question

52% accept rate
1  
Found this one on the inet useyourloaf.com/blog/2010/6/29/… – powtac Jul 26 '10 at 20:06
feedback

8 Answers

up vote 8 down vote accepted
+175

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~ipad to iPad, your file names should be iPad-Portrait.png and iPad-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.

link|improve this answer
Thanks! I will check this! There are some different offical Apple documentations out there... – powtac Jun 7 '10 at 11:39
iOS prior to 3.2 does not support this. Check my answer below if you're building against an older iOS version. – Johe Green Sep 22 '11 at 17:35
feedback

See the answer to this question: http://stackoverflow.com/questions/2634898/splash-screen-for-universal-application-for-ipad-and-iphone

link|improve this answer
Thanks for the hint: a second file "Default-Portrait.png" with 768w x 1024h did the job! – powtac May 11 '10 at 16:12
It does not work. The default.png is also shown up on the iPad launch. :( First the Default-Portrait.png is shown an then short after the Default.png (which is too small). When I remove the Default.png file the iPad works correct but no image is shown up on the start of the iPhone. :((( – powtac May 27 '10 at 15:06
feedback

It does not work. The default.png is also shown up on the iPad launch. :( First the Default-Portrait.png is shown an then short after the Default.png (which is too small). When I remove the Default.png file the iPad works correct but no image is shown up on the start of the iPhone. :((( – powtac May 27 at 15:06

I experience this too

link|improve this answer
I made some experiences when I added a second folder to Xcode called Resources-iPad and added there a second Default-Portrait.png file. But while testing it, it worked sometimes correct when I swapped(!!!) the files in Resources and Resources-iPad folder! – powtac May 31 '10 at 13:19
It also made a difference if the iPhone-Simulator was closed or not before starting the build. It behaved like the Simulator was started with the last setting and changes the renderer to iPad after(!) it has already shown up the launch image for the iPhone. – powtac May 31 '10 at 13:21
feedback

Hey, I've found a solution to this issue, using phonegap 1.9 dropping this code into your apps delegate should do the trick:

if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
    UIImage* image = [[UIImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"Default-Portrait" ofType:@"png"]];
    imageView = [[UIImageView alloc] initWithImage:image];
    [image release];

    imageView.tag = 1;
    [window addSubview:imageView];
    [imageView release];
}

That needs to go in the 'applicationDidFinishLaunching' function after the [ super applicationDidFinishLaunching:application ] call.

link|improve this answer
Thanks for sharing. I will check this too. – powtac Jul 2 '10 at 18:28
feedback

You need to specify the launch image as mentioned above, but also check to make sure that after the build your launch icons are in the right place. After doing a Build/Run of a PhoneGap project, check the Resources folder in xcode. I found that my additional launch screens and app icons hadn't been moved there in build. Once I copied them in manually and re-built, all the icons and launch screens worked as they should for ipad and iphone.

link|improve this answer
feedback

I had the same problem. I tried a whole bunch of solutions, which were proposed here and on the net. Nothing worked. My Problem was that I'm using a deployment target < iOS 3.2 which does not support the Info.plist settings Mo. described in his post.

Unfortunately Apple has several documentations on the Info.plist / splash screen matter. This one helped:

http://developer.apple.com/library/ios/#documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/BuildTimeConfiguration/BuildTimeConfiguration.html#//apple_ref/doc/uid/TP40007072-CH7-SW18

You set up your project like this: Make no "Launch image" settings in Info.plist. Just add the following images:

Default.png --> This is the (big) iPad splash image

Default-Landscape.png --> This is the (big landscape) iPad splash image

Default-Portrait.png --> This is the (big portrait) iPad splash image

Default~iphone.png --> This is the (small) iPhone splash image

To support high-resolution displays:

Default@2x~iphone.png --> --> This is the (retina) iPhone splash image

link|improve this answer
feedback

you need to put a file called "Default.png" in your resources - splash folder. This will remove it, yes i know it sounds silly, because it's an IPAD app, but if you don't want to touch the C code, just add or replace that file. It get's called even if it's an IPAD (meaning, actually default.png is for iphone, but ...well whatever, just try it!)

link|improve this answer
the new version of PG works – renevdkooi Aug 31 '11 at 9:55
feedback

I followed the documentation regarding adding the UILaunchImageFile key to the .plist file http://developer.apple.com/library/ios/#documentation/General/Reference/InfoPlistKeyReference/Articles/iPhoneOSKeys.html .

This works but you have to remember to drag and drop your ipad image into XCode. It will not work by simply adding the file in the file browser, you must use Xcode!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.