定位当前城市并获取天气信息

一、首先,说一下怎么定位当前城市

可能定位城市有很多做法,我只写一种我在项目中应用的

注意:我们需要打开info.plist文件添加定位权限的说明,否则程序在iOS10上会出现崩溃。

<!-- 位置 --> 
<key>NSLocationUsageDescription</key> 
<string>App需要您的同意,才能访问位置</string> 
<!-- 在使用期间访问位置 --> 
<key>NSLocationWhenInUseUsageDescription</key> 
<string>App需要您的同意,才能在使用期间访问位置</string> 
<!-- 始终访问位置 --> 
<key>NSLocationAlwaysUsageDescription</key> 
<string>App需要您的同意,才能始终访问位置</string>

iOS10其他权限设置

1、我们需要导入框架

#import <CoreLocation/CoreLocation.h>

2、设置代理并声明一个全局变量,因为这个城市变量在获取天气的时候要用

@interface MainAppViewController ()<CLLocationManagerDelegate>{
    NSString * currentCity; //当前城市
}

3、接下来就是重点了,直接上代码,注释很全

//判断定位服务是否打开
    if(![CLLocationManager locationServicesEnabled])
    {
        UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"提示" message:@"定位服务未打开" preferredStyle:UIAlertControllerStyleAlert];
        //创建按钮
        //handler:点击按钮执行的事件
        UIAlertAction *action = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleCancel handler:nil];
        [alert addAction:action];
        [self presentViewController:alert animated:YES completion:nil];
        return;
    }
    
    self.locationManager = [[CLLocationManager alloc]init];
    //iOS8之后需要请求权限
    //判断当前手机系统是否高于8.0
    if([UIDevice currentDevice].systemVersion.floatValue >= 8.0)
    {
        //请求使用期间访问位置信息权限
        [self.locationManager requestWhenInUseAuthorization];
        //请求一直访问位置信息权限
        //[locationManager requestAlwaysAuthorization];
    }
    //定位精度 kCLLocationAccuracyBest:最精确
    self.locationManager.desiredAccuracy = kCLLocationAccuracyBest;
    //多少米之外去更新用户位置
    //locationManager.distanceFilter = 100;
    //设置代理
    self.locationManager.delegate = self;
    //开始定位
    [self.locationManager startUpdatingLocation];
    NSLog(@"开始定位");

4、接下来就是代理方法了

定位失败
//定位失败则执行此代理方法
//定位失败弹出提示框,点击"打开定位"按钮,会打开系统的设置,提示打开定位服务
- (void)locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)error {
    
    NSLog(@"定位失败");
    UIAlertController * alertVC = [UIAlertController alertControllerWithTitle:@"允许\"定位\"提示" message:@"请在设置中打开定位" preferredStyle:UIAlertControllerStyleAlert];
    UIAlertAction * ok = [UIAlertAction actionWithTitle:@"打开定位" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
        //打开定位设置
        NSURL *settingsURL = [NSURL URLWithString:UIApplicationOpenSettingsURLString];
        [[UIApplication sharedApplication] openURL:settingsURL];
    }];
    UIAlertAction * cancel = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
        
    }];
    
    [alertVC addAction:cancel];
    [alertVC addAction:ok];
    [self presentViewController:alertVC animated:YES completion:nil];
    
}
定位成功

定位成功,获取到当前所在城市,也可以得到具体坐标,因为我要用城市去获取天气信息,所以我只拿到城市名字就可以了

//定位成功
- (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray<CLLocation *> *)locations {
    NSLog(@"定位成功");
    [self.locationManager stopUpdatingLocation];
    CLLocation *currentLocation = [locations lastObject];
    CLGeocoder * geoCoder = [[CLGeocoder alloc] init];
    
    //反编码
    [geoCoder reverseGeocodeLocation:currentLocation completionHandler:^(NSArray<CLPlacemark *> * _Nullable placemarks, NSError * _Nullable error) {
        if (placemarks.count > 0) {
            CLPlacemark *placeMark = placemarks[0];
            currentCity = placeMark.locality;
            if (!currentCity) {
                currentCity = @"无法定位当前城市";
            }
            NSLog(@"%@",currentCity); //这就是当前的城市
            NSLog(@"%@",placeMark.name);//具体地址:  xx市xx区xx街道   
        }
        else if (error == nil && placemarks.count == 0) {
            NSLog(@"No location and error return");
        }
        else if (error) {
            NSLog(@"location error: %@ ",error);
        }
        
    }];        
}
定位服务状态改变
// 定位服务状态改变
 -(void)locationManager:(CLLocationManager *)manager didChangeAuthorizationStatus:(CLAuthorizationStatus)status{
     switch (status) {
         case kCLAuthorizationStatusNotDetermined:{
             if ([self.locationManager respondsToSelector:@selector(requestAlwaysAuthorization)]) {
                 [self.locationManager requestAlwaysAuthorization];
             }
             NSLog(@"用户还未决定授权");
             break;
         }
         case kCLAuthorizationStatusRestricted:{
             NSLog(@"访问受限");
             break;
         }
         case kCLAuthorizationStatusDenied:{
             // 类方法,判断是否开启定位服务
             if ([CLLocationManager locationServicesEnabled]) {
                 NSLog(@"定位服务开启,被拒绝");
             } else {
                 NSLog(@"定位服务关闭,不可用");
             }
             break;
         }
         case kCLAuthorizationStatusAuthorizedAlways:{
             NSLog(@"获得前后台授权");
             break;
         }
         case kCLAuthorizationStatusAuthorizedWhenInUse:{
             NSLog(@"获得前台授权");
             break;
         }
         default:
             break;
     }
 }

二、有了城市,我们就可以获取天气了

天气的api也有很多,我这里用的是聚合数据,他里面天气信息数据是免费的,基本天气的数据都有,还有具体api是怎么用的,都有详细介绍(我不是打广告的)。
请求示例(两种都可以):
https://op.juhe.cn/onebox/weather/query?cityname=%E6%B8%A9%E5%B7%9E&key=您申请的KEY
http://op.juhe.cn/onebox/weather/query?cityname=%E6%B8%A9%E5%B7%9E&key=您申请的KEY
注意:
  • 支持https,省去了很多麻烦。
  • 支持json/xml。
  • 我们定位得到的城市名字是中文编码,需要转换一下接口中cityname,下面代码里有。
  • 还需要你去聚合数据 申请一个key,免费的。
  • 建议写之前去看一下他给出来的示例 json/xml文件,很多数据你可能用得到。
NSString *url = [NSString stringWithFormat:@"https://op.juhe.cn/onebox/weather/query?cityname=%@&key=您申请的KEY",currentCity];
            NSString *str = [url stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
            NSURL *url1 = [NSURL URLWithString:str];
            NSURLRequest *urlR = [NSURLRequest requestWithURL:url1];
            NSURLSession *session = [NSURLSession sharedSession];
            
            NSURLSessionDataTask *dataTask = [session dataTaskWithRequest:urlR completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {
                NSString *rec = [[NSString alloc]initWithData:data encoding:NSUTF8StringEncoding];
                NSDictionary *dic=[NSJSONSerialization JSONObjectWithData:[rec dataUsingEncoding:NSUTF8StringEncoding] options:NSJSONReadingAllowFragments error:nil];
               // NSLog(@"weather dic is %@", dic);
                NSDictionary *resultDic = [dic objectForKey:@"result"];
               // NSLog(@"resultArr is %@",resultDic);
                NSDictionary *dataDic = [resultDic objectForKey:@"data"];
               // NSLog(@"dataArr is %@",dataDic);
                NSArray *weatherArr = [dataDic objectForKey:@"weather"];
               // NSLog(@"weather is %@", weatherDic);
                //回到主线程刷新页面
                dispatch_async(dispatch_get_main_queue(), ^{
                    //NSLog(@"weatherDic is %@");
                     NSLog(@"weatherArr[0] is %@",weatherArr[0]);
                    NSLog(@"地点:%@",currentCity);
                    NSString *date = [weatherArr[0] objectForKey:@"date"]; //日期
                    NSLog(@"日期:%@",date);
                    NSDictionary *info = [weatherArr[0] objectForKey:@"info"];
                    NSArray *day = [info objectForKey:@"day"];
                    NSArray *night = [info objectForKey:@"night"];
                    NSLog(@"温度%@-%@",night[2],day[2]);
                    NSLog(@"天气:%@",day[1]);
                    NSLog(@"风向风力:%@\%@",day[3],day[4]);
                    NSString *week = [weatherArr[0] objectForKey:@"week"];
                    NSLog(@"星期: %@",week)                    
                });

这样你就能得到当前城市的天气信息了,当然手动获取其他城市的天气流程是一样的。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,602评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,442评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,878评论 0 344
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,306评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,330评论 5 373
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,071评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,382评论 3 400
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,006评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,512评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,965评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,094评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,732评论 4 323
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,283评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,286评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,512评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,536评论 2 354
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,828评论 2 345

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,599评论 18 139
  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,510评论 25 707
  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,025评论 4 62
  • 原文:上善若水,水善利万物而不争。处眾人之所恶,故几於道。居善地,心善渊,与善仁,言善信,正善治,事善能,动善时。...
    吹泡泡的猫阅读 244评论 0 0
  • 天下英豪,竞攀高,巍巍山立。 崎岖路,迷雾遮掩,险峰遍地。 心有所期无所惧,身有可依不可弃。 默无言,甘苦二十年,...
    第七诗人阅读 355评论 0 3