相关疑难解决方法(0)

Xcode 7 Beta警告:界面方向和启动故事板

我在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 ios

131
推荐指数
6
解决办法
3万
查看次数

更新到Xcode 7.0.1和Project现在有问题

所以我将我的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支持的新界面是什么?

objective-c storyboard orientation ios ios9

4
推荐指数
1
解决办法
3308
查看次数

标签 统计

ios ×2

ios9 ×1

objective-c ×1

orientation ×1

storyboard ×1

xcode ×1