iOS4中的多任务处理:从后台进程发送推送数据
在 OS4 中,卖给客户端的想法是应用程序在后台打开,即使用户在另一个应用程序上,该应用程序也可以定期将数据推送到服务器(这会触发推送通知) 但我在互联网上读到的内容是,IOS4 多任务处理是假的: - 它会冻结应用程序,并且不会将其留在后台 - 开发人员必须指定应用程序必须在 IOS4 中运行(iOS4 资格流程),以确保返回应用程序不会从头开始
因此任何人都可以确认在 iphone 4 上的 iOS4 中应用程序可以将数据推送到后台服务器过程 ?
In OS4 the idea is sold to client is that the app is opened in background, and even if the user is on another app, the app can push data to server on regular basis (which would trigger push notifications btw)
BUT on what i read on the internet is that IOS4 multitasking is a fake one :
- it freezes the app, and doesn't leave it in background
- the developper has to specify the app must work in IOS4 (iOS4 qualification process) to ensure that returning on the app won't start agin from beginning
So can anyone confirm that in iOS4 on iphone 4 the app can push data to server in background process ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
应用程序可以通过两种方式在后台接收和响应位置事件:
有关 iOS 4 多任务处理的更多信息,请参阅 Apple 指南 iOS 4 的新增功能,以及 iOS 4 应用程序编程指南的后台任务部分。
Apps can receive and respond to location events in the background in two ways:
There's more information about iOS 4 multitasking available in Apple's guide to What's new in iOS 4, and the iOS 4 Application Programming Guide's Background Tasks section.