我在Xcode 7 beta中打开了我的项目,我收到了以下警告,我在Xcode 6中没有得到:
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.
Run Code Online (Sandbox Code Playgroud)
该应用程序仅使用纵向方向设备,我设置了这种方式.我还有iphone和ipad接口的故事板.我无法确定为什么我会收到这些警告.这是一个Xcode 7 beta错误吗?
所以我将我的Xcode 6.1版本上传到iTunes Connect,该应用程序获得批准.现在我正在尝试更新应用程序,我更新到Xcode 7.0.1和Xcode给我的问题说明:
(对于app我使用了故事板和Objective-C)
警告:除非应用程序需要全屏,否则必须支持所有界面方向.
警告:除非应用程序需要全屏,否则必须提供启动故事板或xib.
- (NSUInteger)supportedInterfaceOrientations {
return (UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskPortraitUpsideDown);
}
Run Code Online (Sandbox Code Playgroud)
iOS 9支持的新界面是什么?