Xcode 7 Beta warnings: Interface Orientations and Launch Storyboard

后端 未结 8 1569
心在旅途
心在旅途 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

    0 讨论(0)
  • 2020-12-23 16:25

    By default the Device Orientation only enables Portrait, Landscape Left, and Landscape Right. You need to enable the Upside Down as well.

    0 讨论(0)
提交回复
热议问题