Wi-Fi 一段时间后会休眠 - Objective-c

发布于 2024-12-10 14:18:11 字数 168 浏览 1 评论 0原文

我创建了下载文件的应用程序。为了下载,我使用ASIHTTPRequest。当我开始下载大文件并锁定我的设备时,一段时间后我的下载停止,Wi-Fi 禁用,我看到 Edge 图标而不是 Wi-Fi 图标。当我解锁设备时,Wi-fi 图标会在 1-2 秒内出现。我的应用程序不在后台!如何解决我的问题?

I created application to download files. For downloading i use ASIHTTPRequest. When I start download big file, and lock my device, after some time my download stops, wi-fi disables and i see Edge icon instead of Wi-fi icon. When I unlock my device, Wi-fi icon appears in 1-2 seconds. My application is not in background! How to solve my problem?

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

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

发布评论

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

评论(3

长不大的小祸害 2024-12-17 14:18:11

我想到两件事:

首先为您的应用程序启用持久 wifi 连接: 我的 iPhone 应用程序需要持久的网络连接...如何指定 UIRequiredDeviceCapability?

其次,让应用程序在进入后台时请求后台时间,以便实际下载可以继续:
在iOS4下在后台继续长时间运行的进程

Two things come to mind:

Firstly enable persisten wifi connection for you app: My iPhone app needs a persistent network connection...how to specify UIRequiredDeviceCapabilities?

Secondly make the app request background time when it goes into the background so the actual download can continue:
Continuing a long running process in the background under iOS4

夏有森光若流苏 2024-12-17 14:18:11

我不确定锁定设备 10 分钟后该应用程序是否算作在后台运行。

我至少会尝试在 ASIHTTPRequest 中启用后台下载:

[request setShouldContinueWhenAppEntersBackground:YES];

它可能会有所帮助,而且您不会有任何损失:)

I'm not sure if 10 minutes after locking the device if the app would count as running in the background or not.

I'd at least try enabling background downloading in ASIHTTPRequest:

[request setShouldContinueWhenAppEntersBackground:YES];

It might help and you've nothing to lose :)

相对绾红妆 2024-12-17 14:18:11

您还可以阻止 iPhone 锁定屏幕。它会使用更多电池,但会解决您的问题:

UIApplication *myApp = [UIApplication sharedApplication];
   myApp.idleTimerDisabled = YES;

You can also prevent the IPhone to lock the screen. It'll use more battery but will solve your problem:

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