69

I don't use a storyboard/xib for launch screen and get these errors in Xcode7+.

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

- A launch storyboard or xib must be provided unless the app requires full screen.
Sahil Kapoor
  • 11,183
  • 13
  • 64
  • 87

2 Answers2

120

Starting from iOS9 and Xcode 7 you are required to provide a LaunchScreen.storyboard for your launch screen in order to support the new multitasking feature on iPad.

To opt out of being eligible to participate in Slide Over and Split View, add the UIRequiresFullScreen key to your Xcode project’s Info.plist file and apply the Boolean value YES.

Find out more on Apple's reference (check last paragraph) or watch session 205 Getting Started with Multitasking on iPad in iOS 9 @ 10:35.

Corwin Newall
  • 508
  • 8
  • 18
Tomas Camin
  • 9,996
  • 2
  • 43
  • 62
  • Update answer with reference to WWDC 2015 video – Tomas Camin Jun 15 '15 at 12:20
  • I've done this as well, but I'm noticing my Default-x.png images aren't being shown... Anyone else? – Ricky Aug 25 '15 at 04:48
  • 11
    As explained [here](http://stackoverflow.com/questions/31141806/xcode-7-beta-warnings-interface-orientations-and-launch-storyboard) you can achieve the same a bit easier by enabling a checkbox under the 'General' tab of your project settings. – ecotax Sep 02 '15 at 14:42
89

Set Requires full screen to YES in your target.

Requires full screen

Jakub Truhlář
  • 20,070
  • 9
  • 74
  • 84
  • 6
    Additional: if you used an empty `LaunchImage` bundle as part of your `Images.xcassets` for your Launch Images Source setting the app will only display the default 3.5" screen (for iPhone 4 and older) like before the iOS 7 transition. To avoid this make sure you use at least one (placeholder) image e.g. `Default-568h@2x~iphone.png` – jlapoutre Sep 17 '15 at 14:50