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

AFNetworking 请求队列

时间:2014-11-27 17:54:21      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:style   http   io   color   sp   on   log   bs   ad   

新鲜出炉 AFNetworking 请求队列

NSURL *url = [NSURL URLWithString:@"http://www.baidu.com"];

    NSURLRequest *request = [NSURLRequest requestWithURL:url];

    AFHTTPRequestOperation *operation1 = [[AFHTTPRequestOperation alloc] initWithRequest:request];

    [operation1 setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) {

        NSLog(@"Response: %@", [[NSString alloc] initWithData:responseObject encoding:NSUTF8StringEncoding]);

    } failure:^(AFHTTPRequestOperation *operation, NSError *error) {

        NSLog(@"Error: %@", error);

    }];

    

    

    NSURL *url2 = [NSURL URLWithString:@"http://www.sohu.com"];

    NSURLRequest *request2 = [NSURLRequest requestWithURL:url2];

    AFHTTPRequestOperation *operation2 = [[AFHTTPRequestOperation alloc] initWithRequest:request2];

    [operation2 setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) {

        NSLog(@"Response2: %@", [[NSString alloc] initWithData:responseObject encoding:NSUTF8StringEncoding]);

    } failure:^(AFHTTPRequestOperation *operation, NSError *error) {

        NSLog(@"Error: %@", error);

    }];

    

    

    

    NSURL *url3 = [NSURL URLWithString:@"http://www.sina.com"];

    NSURLRequest *request3 = [NSURLRequest requestWithURL:url3];

    AFHTTPRequestOperation *operation3 = [[AFHTTPRequestOperation alloc] initWithRequest:request3];

    [operation3 setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) {

        NSLog(@"Response3: %@", [[NSString alloc] initWithData:responseObject encoding:NSUTF8StringEncoding]);

    } failure:^(AFHTTPRequestOperation *operation, NSError *error) {

        NSLog(@"Error: %@", error);

    }];

    

    

    //同时请求

    NSOperationQueue *operationQueue = [[NSOperationQueue alloc] init];

    [operationQueue setMaxConcurrentOperationCount:3];

    [operationQueue addOperations:@[operation1, operation2, operation3] waitUntilFinished:NO];

 

    

    //operation2 operation1 请求完成后执行

    NSOperationQueue *operationQueue = [[NSOperationQueue alloc] init];

    [operation2 addDependency:operation1];

    [operationQueue addOperations:@[operation1, operation2, operation3] waitUntilFinished:NO];

 

AFNetworking 请求队列

标签:style   http   io   color   sp   on   log   bs   ad   

原文地址:http://www.cnblogs.com/kkkblog/p/4126509.html

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