Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why does XCode show launch image warnings?

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).

like image 875
TigerCoding Avatar asked Dec 04 '11 07:12

TigerCoding


2 Answers

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.

like image 134
Matthias Bauch Avatar answered Oct 02 '22 17:10

Matthias Bauch


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 - [email protected]

Landscape Retina : 2048x1496 - [email protected]


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

Portrait : 768x1024 - Default-Portrait.png

Landscape : 1024x768 - Default-Landscape.png

Portrait Retina : 1536x2048 - [email protected]

Landscape Retina : 2048x1536 - [email protected]

like image 32
B-Money Avatar answered Oct 02 '22 16:10

B-Money