0

I'm developing a universal iOS app that only supports portrait and upside-down interface orientations. When supplying the launch images in Xcode, I see that I have warnings for landscape orientations, even having only portrait and upside down enabled in device orientations settings. Does this mean that I need to supply landscape launch images anyway? I don't find this clear in Apple's documentation.

Thanks

AppsDev
  • 12,319
  • 23
  • 93
  • 186
  • I had the same problem and I think it does not really matter. Though you can verify if this will affect your app by "Archiving" and "Validating" the "Archive" on Xcode. It's like a step before submitting the app for review at Apple. – ipinak Feb 18 '14 at 09:28
  • an iPad app includes at least one launch image in portrait orientation and at least one launch image in landscape orientation. – codercat Feb 18 '14 at 10:01

3 Answers3

2

No. These are warnings. Apple would prefer you support all orientations on iPad, and recommend you do, but they do not require it. (Yet)

JamesSugrue
  • 14,891
  • 10
  • 61
  • 93
0

Launch Images in Landscape Orientation is optional and xCode ignores it if it is not provided in Application.

However, If you are using Xcode5 there will be a folder named Images.xcassets > Launch Images > There will be a blank icon available for iPad Landscape > Right Click on those 1x and 2x icon > Remove Selected Items.

This will remove the warnings that you are having in your case.

Let me know if that helps.

Usman Awan
  • 1,208
  • 2
  • 13
  • 30
0

an iPad app includes at least one launch image in portrait orientation and at least one launch image in landscape orientation.

codercat
  • 22,873
  • 9
  • 61
  • 85