我没有使用storyboard / xib作为启动画面,并在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.
答案 0 :(得分:116)
从iOS9和Xcode 7开始,您需要为启动屏幕提供LaunchScreen.storyboard,以支持iPad上的新多任务功能。
要选择不参与幻灯片放映和拆分视图,请将R18C20
键添加到Xcode项目的Info.plist文件中,并应用布尔值YES。
在Apple的reference上查看更多信息(查看最后一段)或观看会议205 在iOS 9中的iPad上进行多任务处理 @ 10:35。
答案 1 :(得分:86)