Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试 ASIHttpRequest 下载文件,但是当应用程序进入后台时,它会在几秒钟后停止下载,有没有办法在后台完全下载文件?
您必须设置下载请求才能在后台继续。
[self.downloadRequest setShouldContinueWhenAppEntersBackground:YES];
self.downloadRequest 是 ASIHTTPRequest,所以只需将其替换为您的,在初始化后添加此行,然后它将在后台继续:]