13
votes

I get the following warnings in my iPad launch images, but not the iPhone images:

launch images ipad

I can't find the text related to the warnings anywhere.

Here are my plist settings:

plist ipad images

And my image files:

image file names

When I tried "Default-iPad.png" it didn't fix it either.

The image dimensions are 768 x 1024 (portrait) and 1024 x 768 (landscape).

3

3 Answers

23
votes

Make your mouse cursor hover over the warning sign and the warning should appear.

It'll tell you that iPad Launch Images should be 768 x 1004 and 1024 x 748
That means you have to remove the status bar from the image.

2
votes

Here's the deal for launch images which work for all iPads. This should tell you exactly what to do and what you need. You need four images, either the first group or the second one, depending on if your app is set to show the top status bar or not. Notice that the names are the same whether your image has room for the status bar or not.

Description : image width x height - image name


iPad - with status bar turned ON (shows wifi connection, time, etc)

Portrait : 768x1004 - Default-Portrait.png

Landscape : 1024x748 - Default-Landscape.png

Portrait Retina : 1536x2008 - Default-Portrait@2x.png

Landscape Retina : 2048x1496 - Default-Landscape@2x.png


iPad - with status bar turned OFF (more screen real estate)

Portrait : 768x1024 - Default-Portrait.png

Landscape : 1024x768 - Default-Landscape.png

Portrait Retina : 1536x2048 - Default-Portrait@2x.png

Landscape Retina : 2048x1536 - Default-Landscape@2x.png

0
votes

You can either resize your images to be 20px smaller in height, or you can make the status bar hide during app launch.

In new versions of XCode (I use 4.5.2), there is a checkbox to hide the status bar in the Project > Target > Summary settings, right above the launch image previews:

enter image description here