除非应用程序需要全屏,否则必须提供启动故事板或 xib
A launch storyboard or xib must be provided unless the app requires full screen
我没有使用 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.
从 iOS9 和 Xcode 7 开始,您需要为启动屏幕提供 LaunchScreen.storyboard 以支持 iPad 上的新多任务处理功能。
要选择退出有资格参与幻灯片和拆分视图,请将 UIRequiresFullScreen
键添加到您的 Xcode 项目的 Info.plist 文件并应用布尔值 YES。
了解有关 Apple reference(查看最后一段)的更多信息或观看课程 205 iOS 9[=19= 中 iPad 的多任务处理入门] @ 10:35.
在目标中将 Requires full screen
设置为 YES
。
我没有使用 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.
从 iOS9 和 Xcode 7 开始,您需要为启动屏幕提供 LaunchScreen.storyboard 以支持 iPad 上的新多任务处理功能。
要选择退出有资格参与幻灯片和拆分视图,请将 UIRequiresFullScreen
键添加到您的 Xcode 项目的 Info.plist 文件并应用布尔值 YES。
了解有关 Apple reference(查看最后一段)的更多信息或观看课程 205 iOS 9[=19= 中 iPad 的多任务处理入门] @ 10:35.
在目标中将 Requires full screen
设置为 YES
。