使用NSURLConnection 发送GET同步请求
// 1. 创建URL对象NSURL *url = [NSURL URLWithString:@"http://mock.allhome.com.cn/mock/5cf76e16de83be001011e63c/0605/header"];// 2. 创建请求对象NSURLRequest *request = [NSURLRequest requestWithURL:url];// 3. 发送同步请求 参数1:请求对象 参数2:响应头信息 参数3:错误信息NSData* data = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];// 打印返回数据NSLog(@"data:%@", [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding]);
上边的运行结果输入如下图