如何使我的应用程序支持多任务处理
我正在开发一个适用于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在您的应用程序中采用多任务。应用以下几点:
支持设置中目标的常规部分的所有方向。
也在“常规”部分中。
需要全屏
(如果有)旁边的复选框。选择故事板,单击右侧栏中的文件检查器图标。选中
使用尺寸类别
旁边的框。查看教程,了解如何使用尺寸类别根据分配给应用程序的屏幕尺寸来调整视图。To adopt Multi-Tasking in your app. apply the following points:
Support all orientation from the target's General section in settings.
In the General section too. remove the check next to
Requires full screen
if any.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.请参阅 http://answers.oreilly.com/topic/1867-how-to-update-your-iphone-app-for-multitasking-with-ios-4/
还有重复的问题如何在ios 4.0中执行多任务应用程序
Refer http://answers.oreilly.com/topic/1867-how-to-update-your-iphone-app-for-multitasking-with-ios-4/
Also duplicate question how to do multitasking application in ios 4.0
如果您使用 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.