Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Launch splash screen in Landscape mode for iPhone 5

Our universal application is in Landscape mode only. We need to add a splash screen for iPhone 4 & iPhone 5.

For iPhone 5 in Portrait we use [email protected]. How to set a launch screen in Landscape for iPhone 5?

like image 218
Tiger Avatar asked Feb 25 '13 06:02

Tiger


2 Answers

According to Apple's Documentation : Providing Launch Images for Different Orientations ,

Each orientation-specific launch image must include a special modifier string in its filename. The format for orientation-specific launch image filenames is as follows:

<basename><orientation_modifier><scale_modifier><device_modifier>.png

Eg :

1)    Default-Portrait.png
2)    Default-PortraitUpsideDown.png
3)    Default-Landscape.png
4)    Default-LandscapeLeft.png
5)    Default-LandscapeRight.png

Note : These modifiers are supported for launch images used in iPad apps only.

So you have to change your Image according to the Orientation for iPhone 5.

Two ways to do that :

1) Rotating the Splash Image to 90 Degree.

2) Inverting the Dimensions (320 * 480 -> 480 * 320).

like image 59
Bhavin Avatar answered Oct 29 '22 06:10

Bhavin


to provide a landscape launch image you must create the image.. and just rotate it 90 degrees in an external image editor

like image 21
TonyMkenu Avatar answered Oct 29 '22 06:10

TonyMkenu