I've got an existing landscape only app that I'm trying to add iPhone 6 / iPhone 6 Plus support for. When I was supporting iOS 6 / 7 I simply used the default-named launch portrait images with a landscape image rotated into portrait (ie. for 4" screens I created a landscape 1136x640 and then rotated to create a 640×1136 launch image.)
I'm trying to get something working for iOS 8 and iPhone 6 / 6+ and have not come up with something that works yet. Here are some things that I have tried:
- Follow the pattern for 4" screen launch image convention. I created Default-667h@2x.png and Default-736h@3x.png images. This did trick the simulator to run at proper iPhone 6/6+ resolution but when launching, the 4" screen launch image is used, not the new ones I created.
- Use an Asset Catalog - I create portrait launch images for iPhone 6 and iPhone 6 Plus in a LaunchImages Asset, as well as a Landscape one for iPhone 6 Plus. The iPhone 6 Plus works, but iPhone 6 just shows a black screen. (There's no way to create a iPhone 6 landscape launch image in an asset catalog)
- Specify UILaunchImages array in Info.plist with entries for all screen sizes (see reference https://developer.apple.com/library/content/documentation/General/Reference/InfoPlistKeyReference/Articles/iPhoneOSKeys.html#//apple_ref/doc/uid/TP40009252-SW28). I get similar results to an Asset Catalog here. I can get iPhone 6 Plus landscape working but not iPhone 6 landscape.
The following steps worked for me:
And it worked for me for each kind of devices on iOS7, iOS8. Note: If you check the new LaunchImage asset, then you can see it is really strange. It seems to contain only a few image without the images with iPhone6 or iPhone 6plus resolution.
To start your application in landscape mode, edit your Info.plist file to add the UIInterfaceOrientation key with the appropriate value (UIInterfaceOrientationLandscapeRight or UIInterfaceOrientationLandscapeLeft), as bellow code. This provides a hint to the system to set the orientation of the status bar appropriately at launch time.
Listing 1: Starting your application in landscape mode
for more info click here
This is a follow-up to @AlexArgo's answer that extends it so that landscape-only, iOS 9-supporting apps show appropriate launch images on iOS 9 iPhones. As with that answer, no asset catalog, storyboard, or xib is required.
Without these additions, the behavior we saw was that launching our landscape-only app on an iOS 9 iPhone displayed the same image as for iOS 8, but the image was rotated 90-degrees clockwise and distorted by being stretched to the opposite-orientation's dimensions.
Pre-fix iOS 9 iPhone launch screen:
There are 2 parts to this solution:
Info.plist
'sUILaunchImages
array before the iOS 8 items from @AlexArgo's answer.Add the new launch images referenced in the below iOS 9 items (eg.
Default-iOS9-568h
) to your app. The new launch images are actual "landscape"-orientation images (wider than they are tall), unlike the images referenced by @AlexArgo's iOS 8 items that started as landscape images but were then rotated to the portrait orientation before being added to the app. Note that both sets of images must remain in the app for this solution to work on iOS 8 and 9 simultaneously.Post-fix iOS 9 iPhone launch screen:
To work with ipad (landscape and portrait mode), you need to add the UILaunchImages~ipad key in your info.plist :
you just add iPhone6-Portrait@2x.png, then it will fix itself for Landscape as well. I've also a landscape-only app for iPhone 6 and iPhone 6 Plus and it works without problems!
If you are using only Images.xassets "Launch Screen File" should be empty. It helped me.