Я не использую ни ключи UILaunchImageFile, ни UIInterfaceOrientation в моем Info.plist (я не указываю на файл Default.png, я просто добавляю файлы projet с правильными именами).
Я использую только UISupportedInterfaceOrientations ~ ipad , а затем просто включаю в свой проект следующие файлы:
Default-LandscapeLeft.png Default-LandscapeRight.png Default-Portrait.png Default-PortraitUpsideDown.png
В вашем случае просто используйте «Default-LandscapeLeft.png» и «Default-LandscapeRight.png», и все будет в порядке.Единственное, что связано с графикой в моем Info.plist:
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>