ios – 什么是AFNetworking 2.0等同于取消操作

前端之家收集整理的这篇文章主要介绍了ios – 什么是AFNetworking 2.0等同于取消操作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我曾经能够在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属性.

原文链接:https://www.f2er.com/iOS/333168.html

猜你在找的iOS相关文章