我曾经能够在AFHTTPClient类上使用cancelAllHTTPOperationsWithMethod:来取消操作.取消操作的新方法是什么?
解决方法
您可以手动取消操作.您可以从操作队列中获取操作:
AFHTTPRequestOperationManager *manager = // ... for (NSOperation *operation in manager.operationQueue.operations) { // here you can check if this is an operation you want to cancel [operation cancel]; } // or just cancel all of them! [manager.operationQueue cancelAllOperations];
如果您更多地使用NSURLSession,AFURLSessionManager也有一个operationQueue属性.