后台持久套接字(iOS)?
更新:我的意思是,当应用程序进入后台时,用户将其关闭,iPhone 就位于跳板上。连接可以保持活动吗?
我想向客户推送一些内容。 是否可以? 我需要注册一些……东西吗?
UPDATE: I mean when the application has gone to background, the user closed it, iPhone is on the Springboard. Can be the connection kept alive?
I want to push some content to the clients.
Is it possible?
Do I have to register some... ...thing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需将应用程序注册为 VoIP 应用程序,然后套接字就会在后台维护。
第 60 页和第 180 页:
http://developer.apple.com/library/ios /documentation/iphone/conceptual/iphoneosprogrammingguide/iphoneappprogrammingguide.pdf
实际的后台任务可能会被App拒绝,你必须小心。
Just register the app as a VoIP app, then a socket will be mantained in the background.
Page 60, and Page 180:
http://developer.apple.com/library/ios/documentation/iphone/conceptual/iphoneosprogrammingguide/iphoneappprogrammingguide.pdf
The actual background task can be subject of App rejection, you have to be careful.
http://mobileorchard.com/tutorial-networking-and-bonjour-on- iphone/
这应该是一个好的开始。
您最多可以使连接保持活动状态 10 分钟
这将为您提供 10 分钟的时间来检查连接。 8 分钟后,您可以使用本地推送通知要求用户打开应用程序以将其再延长 10 分钟。
http://mobileorchard.com/tutorial-networking-and-bonjour-on-iphone/
This should be a good start.
You can keep the connection alive for upto 10 minutes
This will give you 10 minutes to check for a connection. After 8 minutes, you can use a local Push notification asking the user to open the app to extend it for another 10 minutes.