码迷,mamicode.com
首页 > Web开发 > 详细

AFNetworking 取消请求

时间:2017-06-14 16:25:41      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:ext   ring   ble   tracking   error   .text   code   pos   ati   

取消单个操作:

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];

AFNetworking 取消请求

标签:ext   ring   ble   tracking   error   .text   code   pos   ati   

原文地址:http://www.cnblogs.com/blfbuaa/p/7008548.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!