如何使我的应用程序支持多任务处理

发布于 2024-10-11 00:21:38 字数 94 浏览 6 评论 0原文

我正在开发一个适用于 iphone 和 ipad 的应用程序,以 4.0 作为基础 SDK,以 3.0 作为目标。 如何为此应用程序启用多任务处理。

谢谢..

i am developing an app for iphone and ipad with 4.0 as base SDK and 3.0 as target.
how to enable multitasking to this app.

thanks..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

陌上青苔 2024-10-18 00:21:39

在您的应用程序中采用多任务。应用以下几点:

  1. 支持设置中目标的常规部分的所有方向。

  2. 也在“常规”部分中。 需要全屏(如果有)旁边的复选框。

  3. 选择故事板,单击右侧栏中的文件检查器图标。选中使用尺寸类别旁边的框。查看教程,了解如何使用尺寸类别根据分配给应用程序的屏幕尺寸来调整视图。

To adopt Multi-Tasking in your app. apply the following points:

  1. Support all orientation from the target's General section in settings.

  2. In the General section too. remove the check next to Requires full screen if any.

  3. Select storyboard, click the File Inspector icon in the right side bar. check the box next to Use Size Classes. Check out tutorials how to use size class to adjust your views according to the screen size assigned to your app.

菩提树下叶撕阳。 2024-10-18 00:21:39

如果您使用 4.x SDK 构建 iOS 应用程序,Apple 的“多任务处理”将默认启用,除非您显式添加 plist 键来阻止它。

但是,除非您在应用程序的退出/变为活动状态和/或应用程序的挂起/恢复委托中添加对多任务处理的支持,否则多任务处理可能无法正常工作。

如果您确实想在后台运行代码,那么您的应用程序需要具有一些非常特定的类型,或者添加对在非常有限的时间内运行某些代码的支持,为此您可能需要阅读Apple的文档。

If you build an iOS app using a 4.x SDK, Apple's "multitasking" will be enabled by default, unless you explicitly add a plist key to prevent it.

But multitasking may not work properly unless you add support for it in the app's resign/become active, and/or app's suspend/resume delegates.

If you actually want to run code in the background, then your app needs to be of a few very specific types, or add support for running some code for a very limited amount of time, for which you probably want to read Apple's documentation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文