码迷,mamicode.com
首页 > 其他好文 > 详细

获取天气情况

时间:2016-08-15 16:01:51      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

NSError *error;
    //获取温度
    //加载一个NSURL对象
    NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"https://api.thinkpage.cn/v3/weather/daily.json?key=poaufucs3ixc3c6x&location=hangzhou&language=zh-Hans&unit=c&start=0&days=1"]];
    //将请求的url数据放到NSData对象中
    NSData *response = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];
    //IOS5自带解析类NSJSONSerialization从response中解析出数据放到字典中
    NSDictionary *weatherDic = [NSJSONSerialization JSONObjectWithData:response options:NSJSONReadingMutableLeaves error:&error];
    //    NSLog(@"%@",weatherDic);
    NSArray *weatherInfo = [weatherDic objectForKey:@"results"];

获取天气情况

标签:

原文地址:http://www.cnblogs.com/Mrliheng/p/5773235.html

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