iPad 设备锁定时下载大文件需要 10 分钟以上

发布于 2025-01-08 08:15:34 字数 1284 浏览 0 评论 0原文

我有一个要求,用户可以依次下载多个文件。 当我的应用程序进入后台或 iPad 被锁定时,下载或网络服务响应只能持续 10 分钟。

我的下载发生在一个单独的线程中,经过一些谷歌搜索和 stackoverflow 链接后,我实现了 beginBackgroundTaskWithExpirationHandler:

如何实现任务完成

应用程序因 iphone 自动锁定而崩溃?

和 iOS 文档

https://developer.apple.com/library /ios/#documentation/iphone/conceptual/iphoneosprogrammingguide/ManagingYourApplicationsFlow/ManagingYourApplicationsFlow.html

现在我选择的一些文件已下载有些失败是因为后台任务最多只能运行 10 分钟。

有什么替代方案吗? 当应用程序进入后台时我应该完全暂停下载吗? 有人可以帮我解决这个问题吗?

如果我的下载正在进行中,我已经成功地做到了这一点,即不结束后台任务

bgTask = [app beginBackgroundTaskWithExpirationHandler:^{ NSLog(@"\n beginBackgroundTaskWithExpirationHandler 称为\n"); if(![self checkIfDownloadInProgress]){ [自我结束任务完成]; } }];

仅当用户手动锁定设备时,此功能才有效。如果设备在 2 分钟后自动锁定,应用程序运行 10 分钟,然后崩溃 有人可以帮忙吗?

I have a requirement where user can download multiple files one after other.
When my app goes in background OR when iPad is locked, the download or web-service response can be get only for 10 minutes.

My download happens in a separate thread, I have implemented beginBackgroundTaskWithExpirationHandler: after some googling and on stackoverflow links.

How to implement Task completion

App crash because of auto lock in iphone?

and iOS documetation

https://developer.apple.com/library/ios/#documentation/iphone/conceptual/iphoneosprogrammingguide/ManagingYourApplicationsFlow/ManagingYourApplicationsFlow.html

Now some of my selected files are downloaded and some failed because one can run background task only for 10 min max.

Is there any alternative for this??
Should I pause download completely while app goes in background??
Can anyone help me regarding this??

I have succeeded to do so by not ending background task if my download is in progress

bgTask = [app beginBackgroundTaskWithExpirationHandler:^{
NSLog(@"\n beginBackgroundTaskWithExpirationHandler called \n");
if(![self checkIfDownloadInProgress]){
[self endTaskOnCompletion];
}
}];

This works only if device is manually locked by user. If device locks automatically after 2 min, app runs for 10 min and then it is crashed
Can anybody help?

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

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

发布评论

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

评论(2

深者入戏 2025-01-15 08:15:34
  1. 如果没有必要,则暂停。这是您能做的最好的事情。
  2. 否则当您的过期处理程序被调用时,您可以再次启动后台任务,并且您将获得 10 分钟以上的时间。
  1. If it is not necessary then pause it. It is the best thing that you can do.
  2. Else when your expiration handler is called then you can start again background task and you will get 10 mins more.
高跟鞋的旋律 2025-01-15 08:15:34

我发现这是可能的唯一方法:

  1. 使用可恢复传输,分块下载/上传。
  2. 当应用程序发送到后台时,继续传输 10 分钟
  3. 时间到时清理 激活
  4. 应用程序时恢复传输

本文档总结了网络和多任务处理中可能的解决方案:
https://developer.apple.com/library/ios/#technotes /tn2277/_index.html

Only way I found this is possible:

  1. Use resumable transfers, download/upload in chunks.
  2. When application is sent to background continue transfer for 10 minutes
  3. Cleanup when time is up
  4. Resume transfer when application is activated

This document pretty much summarizes possible solutions in Networking And Multitasking:
https://developer.apple.com/library/ios/#technotes/tn2277/_index.html

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