网络天气预报json路径
NSURL *url=[NSURL
NSURLRequest *restlu=[NSURLRequest requestWithURL:url];
//网络请求
NSURLSession *session=[NSURLSession sharedSession];
NSURLSessionTask *tack=[session dataTaskWithRequest:restlu completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {
//简析
NSDictionary *arr=[NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableLeaves error:nil];
NSLog(@"%@ 天气%@ 发布时间%@",arr[@"weatherinfo"][@"city"],arr[@"weatherinfo"][@"weather"],arr[@"weatherinfo"][@"ptime"]);
}];
//真正的实行
[tack resume];
屏幕快照 2016-03-24 下午10.10.52.png