本文主要是介绍AFNetworking 撤消请求,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
www.MyException.Cn 网友分享于:2015-08-12 浏览:0次
AFNetworking 取消请求
取消单个操作:
AFHTTPRequestOperation *operation= [[AFHTTPRequestOperation alloc] initWithRequest:request];
[operation cancel];
或者
AFHTTPRequestOperation *operation = [postManager POST:request.methodUrlparameters:parameterssuccess:^(AFHTTPRequestOperation *operation,id responseObject) {}failure:^(AFHTTPRequestOperation *operation,NSError *error){}];[operation cancel];
取消所有操作:
AFHTTPRequestOperationManager *httpmanager = [AFHTTPRequestOperationManager manager];
[httpManager.operationQueue cancelAllOperations];
这篇关于AFNetworking 撤消请求的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!