本文介绍了是否可以在iOS 9上从多任务中选择您的iPad应用程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个大型应用程序,我需要一些时间来优化iOS9。

I have a large app that I will need some time to optimize for iOS9.

编辑:我担心的是当应用程序窗口大小减少时,所有UI都会被挤压在一起。所以我的问题是,有没有办法强制全屏显示应用程序?

What I am worried about is all the UI getting squeezed together when the app window size is reduced. So my question is, is there any way to force full screen for the app?

推荐答案

你必须修改你的项目才能支持多任务处理。根据,采用您的应用程序进行多任务处理,满足以下要求:

You have to modify your project to support multitasking. According to WWDC 2015 video, to adopt your app for multitasking, satisfy these requirements:


  1. 使用iOS 9 SDK构建应用程序

  2. 支持所有方向

  3. 使用启动故事板

因此,如果尚未完成此任务,您的应用将无法支持多任务处理。

So, if any of this is not done yet, your app will not be able to support multitasking.

当然,如果您不使用尺寸等级,请将其放在列表顶部。

Of course, if you don't use size classes, put it at the top of the list.

编辑:根据你的问题编辑。 Info.plist中有一个UIRequiresFullScreen键。有关详情,请参阅

according to you question edit. There is a UIRequiresFullScreen key in Info.plist. See more at Apple docs

这篇关于是否可以在iOS 9上从多任务中选择您的iPad应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-24 20:55