AFNetworking 撤消请求

来源:互联网 发布:现代家庭网络布线 编辑:程序博客网 时间:2024/06/10 05:25

www.MyException.Cn  网友分享于:2015-08-12  浏览:0次
AFNetworking 取消请求

取消单个操作:

AFHTTPRequestOperation *operation     = [[AFHTTPRequestOperation alloc] initWithRequest:request];[operation cancel];

或者

AFHTTPRequestOperation *operation     = [postManager POST:request.methodUrl             parameters:parameters                success:^(AFHTTPRequestOperation *operation,                          id responseObject) {                          }failure:^(AFHTTPRequestOperation *operation,                              NSError *error){        }];[operation cancel];

取消所有操作:

AFHTTPRequestOperationManager *httpmanager     = [AFHTTPRequestOperationManager manager];[httpManager.operationQueue cancelAllOperations];
0 0
原创粉丝点击