How to pause downloads in AFNetworking? I'm downloading file with AFHTTPRequestOperation, but there is only cancel method. How to pause and resume it?
Asked
Active
Viewed 2,095 times
2 Answers
3
You're really looking for is AFDownloadRequestOperation which will allow you to pause/resume during a download.

ajmccall
- 2,024
- 23
- 42
1
AFURLConnectionOperation Class
has a pause
, resume
.
check out this:
https://github.com/AFNetworking/AFNetworking/blob/master/AFNetworking/AFURLConnectionOperation.h
Also you must add #import "AFURLConnectionOperation.h"
.
AFHTTPRequestOperation Class is inherited by AFURLConnectionOperation Class.

bitmapdata.com
- 9,572
- 5
- 35
- 43
-
This pause/resume is related to the NSOperations queue on which the AFURLConnectionOperation is based. i.e. Once a download is in progress, then it can't be paused. I'm not sure if this is what @Timur was asking. – ajmccall Jun 13 '13 at 19:47