Wi-Fi 一段时间后会休眠 - Objective-c
我创建了下载文件的应用程序。为了下载,我使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我想到两件事:
首先为您的应用程序启用持久 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
我不确定锁定设备 10 分钟后该应用程序是否算作在后台运行。
我至少会尝试在 ASIHTTPRequest 中启用后台下载:
它可能会有所帮助,而且您不会有任何损失:)
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:
It might help and you've nothing to lose :)
您还可以阻止 iPhone 锁定屏幕。它会使用更多电池,但会解决您的问题:
You can also prevent the IPhone to lock the screen. It'll use more battery but will solve your problem: