oc http json处理

// 1.创建一个URL
    NSURL *url = [NSURL URLWithString:@"http://www.xxx.json"];
    
    // 2.根据URL创建NSURLRequest对象
    NSURLRequest *request = [NSURLRequest requestWithURL:url];
    
    // 3.利用NSURLConnection对象发送请求
    /*
     第一个参数: 需要请求的对象
     第二个参数: 回调block的队列, 决定了block在哪个线程中执行
     第三个参数: 回调block
     */
    // 注意点: 如果是调用NSURLConnection的同步方法, 会阻塞当前线程
    [NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) {
        NSLog(@"hi ok http");
        NSLog(@"%@", [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding]);
        // 将json字符串转换成字典
        NSDictionary *dict = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableLeaves error:nil];
        NSString *error = dict[@"error"];
        if (error) {
        }
        else{
//            NSString *success = dict[@"success"];
            NSLog(@"%@", dict[@"version"]);
        }
    }];

你可能感兴趣的:(oc http json处理)