项目介绍:
iOS:怎么开发一个天气APP项目(一)获取数据
https://github.com/SoolyChristy/SoolyWeatherDemo
1.网络请求数据
首先你得有个天气的API,API最好要求返回的JSON数据比较规范便于数据转模型,由于只是初学只是练手所以无需找那些付费的API。
在这里我是使用百度的API:http://apistore.baidu.com/apiworks/servicedetail/112.html
其他天气API可以自行百度。
找到API之后进行网络请求并且解析从服务器返回的天气数据。
在iOS9之后NSURLConnection被苹果弃用而推荐使用NSURLSession,所以我这里使用NSURLSession。
-(void)requestCityWeather{
NSString *cityName = @"城市名";
NSString *cityID = @"城市ID";
//这个是API地址
NSString *httpUrl = @"http://apis.baidu.com/apistore/weatherservice/recentweathers";
NSString *utf8 = [cityName stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLQueryAllowedCharacterSet]];
NSString *httpArg = [NSString stringWithFormat:@"cityname=%@&cityid=%@",utf8,cityID];
[self request:httpUrl withHttpArg:httpArg];
}
//获取数据
-(void)request: (NSString*)httpUrl withHttpArg: (NSString*)HttpArg {
NSString *urlStr = [[NSString alloc]initWithFormat: @"%@?%@", httpUrl, HttpArg];
NSURL *url = [NSURL URLWithString: urlStr];
//1.创建一个request
NSMutableURLRequest *request = [[NSMutableURLRequest alloc]initWithURL: url cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval: 10];
[request setHTTPMethod: @"GET"];
[request addValue: @"您自己的apikey" forHTTPHeaderField: @"apikey"];
//2.进行网络请求
NSURLSession *session = [NSURLSession sharedSession];
NSURLSessionDataTask *task = [session dataTaskWithRequest:request completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {
//当请求完成后执行这个block 请求下来的数据会在一个NSData里
if (error) {
NSLog(@"Httperror: %@%ld", error.localizedDescription, error.code);
} else {
NSInteger responseCode = [(NSHTTPURLResponse *)response statusCode];
NSString *responseString = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
NSLog(@"HttpResponseCode:%ld", responseCode);
NSLog(@"HttpResponseBody %@",responseString);
//把JSON数据转成字典
NSDictionary *dataDict = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableLeaves error:nil];
NSDictionary *dataDic = [dataDict objectForKey:@"retData"];
NSLog(@"dataDic - %@",self.weatherDic);
}
}];
[task resume]; //不能漏
}
这时候天气数据就在一个字典中了,那么第一步也就完成了。
2.字典转模型
这时候你的数据在一个字典里,这时候需要字典转模型。
若有不明白字典转模型的可以看这篇文章:http://www.cnblogs.com/wendingding/p/3749530.html
也可以自行百度。
从返回的JSON数据来看需要嵌套模型,过滤掉不需要的信息。
TodayData.m
#import "TodayData.h"
@implementation TodayData
-(instancetype)initWithDic:(NSDictionary *)dic{
self = [super init];
if (self) {
NSString *str = [dic[@"curTemp"] substringWithRange:NSMakeRange(0, [dic[@"curTemp"] length] - 1)];
str = [str stringByAppendingString:@"°"];
self.curTemp = str;
self.date = dic[@"date"];
self.fengli = dic[@"fengli"];
self.fengxiang = dic[@"fengxiang"];
self.highTemp = dic[@"hightemp"];
self.lowTemp = dic[@"lowtemp"];
self.pm = dic[@"aqi"];
self.week = dic[@"week"];
self.type = dic[@"type"];
self.time = dic[@"time"];
self.api = [self getAirPollutionIndex];
self.index = [TodayIndex initWithDic:dic[@"index"]];
}
return self;
}
+(instancetype)initWithDic:(NSDictionary *)dic{
return [[self alloc]initWithDic:dic];
}
-(NSString *)getAirPollutionIndex{
NSLog(@"api: - %@",self.pm);
if ((NSNull *)self.pm == [NSNull null]){
return @"无数据";
}else if (self.pm.intValue <= 50) {
return @"优";
}else if (self.pm.intValue <= 100 && self.pm.intValue > 50){
return @"良";
}else if (self.pm.intValue <= 150 && self.pm.intValue > 100){
return @"轻度污染";
}else if (self.pm.intValue <= 200 && self.pm.intValue > 150){
return @"中度污染";
}else if (self.pm.intValue <= 300 && self.pm.intValue > 200){
return @"重度污染";
}else{
return @"严重污染";
}
}
@end
其他模型类都是差不多的。
写好模型数据之后 数据部分就完成了。
请看下一篇:
iOS:怎么做一个天气APP项目(二)搭建框架