本文介绍了多任务处理中的 iOS 9 应用程序提交问题需要所有方向的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用 Xcode 7 将我的应用程序推送到应用程序商店,我的应用程序适用于 iPhone 和 iPad.但它只支持纵向和横向.

I'm pushing my app to app store using Xcode 7 and my app is universal for iPhone and iPad. But it supports only Portrait and landscape left.

这是我的错误:

如何提交具有特定方向的应用,例如仅向左纵向和横向.

How to submit the app with the particular orientation such as Portrait and Landscape left only.

有什么解决问题的建议吗?

Any suggestions to resolve the issue?

推荐答案

如果您不想启用多任务,只需将 UIRequiresFullScreen 添加到您的 info.plist 并将布尔值设置为 YES

If you don't want to enable multi-tasking just disable it by adding UIRequiresFullScreen to your info.plist and set the boolean value to YES

选择您的 Target->General->Deployment Info->EnableRequires Full Screen" 选项

参考 在 iPad 上采用多任务处理增强 了解更多信息

这篇关于多任务处理中的 iOS 9 应用程序提交问题需要所有方向的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-12 16:58