I have a portrait splash screen name, but it's not working in landscape mode.
Like this:
- Default.png
- [email protected]
- [email protected]
- Default-Portrait.png
- Default-Landscape.png
I have a portrait splash screen name, but it's not working in landscape mode.
Like this:
According to Apple's Documentation
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.
Two ways to do that :
1) Rotating the Splash Image to 90 Degree.
2) Inverting the Dimensions (320 * 480 -> 480 * 320).