0

How to pause downloads in AFNetworking? I'm downloading file with AFHTTPRequestOperation, but there is only cancel method. How to pause and resume it?

Timur Mustafaev
  • 4,869
  • 9
  • 63
  • 109

2 Answers2

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