// 1.创建请求
// 请求地址
NSString *str =@"请求数据的地址";
// 对字符串进行编码,将汉字等特殊字符转为 UTF-8格式
str = [str stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
// 把字符串转换成 url 格式
NSURL *url = [NSURLURLWithString:str];
// 网络请求,
NSMutableURLRequest *request = [NSMutableURLRequestrequestWithURL:url];
// 设置网络请求格式,默认是 get 请求
request.HTTPMethod =@"GET";
// 2.发送请求
[NSURLConnectionsendAsynchronousRequest:request queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse *response,NSData *data, NSError *connectionError) {
// 3.处理数据
NSMutableDictionary *dic = [NSJSONSerializationJSONObjectWithData:data options:NSJSONReadingMutableContainerserror:nil];
// 在这里面注意要刷新视图,要不然的话会没有数据显示在视图上面
NSLog(@"%@",dic);
}];