后台持久套接字(iOS)?

发布于 2024-12-28 09:39:13 字数 105 浏览 2 评论 0原文

更新:我的意思是,当应用程序进入后台时,用户将其关闭,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 技术交流群。

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

发布评论

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

评论(2

猥琐帝 2025-01-04 09:39:13

只需将应用程序注册为 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.

败给现实 2025-01-04 09:39:13

http://mobileorchard.com/tutorial-networking-and-bonjour-on- iphone/

这应该是一个好的开始。

您最多可以使连接保持活动状态 10 分钟

UIBackgroundTaskIdentifier myLongTask;
myLongTask = [[UIApplicationsharedApplication]
          beginBackgroundTaskWithExpirationHandler:^{
              // If you're worried about exceeding 10 minutes, handle it here
          }];
[[UIApplication sharedApplication] endBackgroundTask:myLongTask];

这将为您提供 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

UIBackgroundTaskIdentifier myLongTask;
myLongTask = [[UIApplicationsharedApplication]
          beginBackgroundTaskWithExpirationHandler:^{
              // If you're worried about exceeding 10 minutes, handle it here
          }];
[[UIApplication sharedApplication] endBackgroundTask:myLongTask];

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.

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