Is there a way to cancel a AFHTTPRequestOperation? I am using it to download a PLIST for example. So I was planning to have a button to cancel the download or task. Is there
You can use:
[operation cancel];
This is an NSOperation method that's implemented by AFNetworking.
You could use this to cancel all operations:
[[httpClient operationQueue] cancelAllOperations];