你的位置:首页 > 软件开发 > 操作系统 > 获得徐家汇的天气预报

获得徐家汇的天气预报

发布时间:2015-03-11 19:00:37
代码:- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. [self getWeather ...

 

代码:

- (void)viewDidLoad {  [super viewDidLoad];  // Do any additional setup after loading the view, typically from a nib.    [self getWeatherInfo];  }//获得徐家汇的天气预报-(void)getWeatherInfo{    NSError *error;    NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"http://m.weather.com.cn/data/101021200.html" ]];//代码为徐家汇    NSData *response = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];    NSDictionary *weatherDic = [NSJSONSerialization JSONObjectWithData:response options:NSJSONReadingMutableLeaves error:&error];    NSDictionary *weatherInfo = [weatherDic objectForKey:@"weatherinfo"];    NSLog(@"天气%@",[NSString stringWithFormat:@"\n%@\n%@\n%@\n%@\n%@\n ", [weatherInfo objectForKey:@"city"],[weatherInfo objectForKey:@"date_y"],[weatherInfo objectForKey:@"week"], [weatherInfo objectForKey:@"weather1"], [weatherInfo objectForKey:@"temp1"]]);    /*   天气   徐家汇   2014年3月4日   星期二   小雨转多云   11℃~6℃   */}

原标题:获得徐家汇的天气预报

关键词:

*特别声明:以上内容来自于网络收集,著作权属原作者所有,如有侵权,请联系我们: admin#shaoqun.com (#换成@)。

可能感兴趣文章

我的浏览记录