Launching landscape screensaver for iPhone 5

Our universal application works only in landscape mode. We need to add a screensaver for the iPhone 4 and iPhone 5.

For iPhone 5 in portrait we use Default-568h@2x.png. How to set launcher screen in Landscape for iPhone 5?

+5
source share
5 answers

According to Apple Documentation : Providing Launcher Images for Different Orientations ,

Each orientation-oriented launch image must contain a special modifier line in the file name. The format of the orientation-oriented launch image names is as follows:

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

For instance:

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

. , iPad-.

, iPhone 5.

:

1) Splash 90 .

2) (320 * 480 → 480 * 320).

+7

, .. 90

+2

. , . , : -)

0

From the Apple doc , landscape launch screens are only supported for the iPad.

For iPhone and iPod Touch, you need to create a launch screen for the portrait, which can be your 90 ° -oriented screen to launch the landscape. I would apply clockwise rotation rather than counterclockwise rotation (i.e., so that on the desktop you had to bend your head to the right to see the image with the correct orientation).

0
source

use these macros in pch file

#if IS_iPAD
LaunchImage=iPad.png
else
LaunchImage=iPhone.png
-3
source

All Articles