Xcode 7 Beta warnings: Interface Orientations and Launch Storyboard

后端 未结 8 1636
心在旅途
心在旅途 2020-12-23 15:27

I opened my project in Xcode 7 beta and I am getting the following warnings which I do not get in Xcode 6:

 All interface orientations must be supported unle         


        
8条回答
  •  星月不相逢
    2020-12-23 16:23

    This is because Apple has added multi task ability in iOS 9. All you need to tell Xcode is that your app require full screen.

    Add the UIRequiresFullScreen key to your Xcode project’s Info.plist file and apply the Boolean value YES.

    To read more about it in general.
    https://developer.apple.com/library/ios/documentation/WindowsViews/Conceptual/AdoptingMultitaskingOniPad/index.html

提交回复
热议问题