iOS 9 : Warning "All interface orientations must be supported unless the app requires full screen" for universal app

Zaphod picture Zaphod · May 11, 2016 · Viewed 21.7k times · Source

I'm working on an universal app with all orientations on iPad and only portrait on iPhone. The app works well with split-screen multitasking on iOS 9 compatible iPad, but I have this warning:

All interface orientations must be supported unless the app requires full screen

And my app does not require full screen. It's only limited to portrait on iPhone... Shouldn't it be ok? Is there a way to declare Requires Full Screen only on iPhone?

Thanks in advance

By the way I'm using Xcode 7.3.1

Answer

mital solanki picture mital solanki · Jan 16, 2017

Set UIRequiresFullScreen to YES in Info.plist.

enter image description here

Enjoy...!!!