博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS获取当前城市
阅读量:6653 次
发布时间:2019-06-25

本文共 1831 字,大约阅读时间需要 6 分钟。

1.倒入头文件

#import <CoreLocation/CoreLocation.h>

2.实现定位协议CLLocationManagerDelegate

3.定义定位属性

@property(nonatomic,retain)CLLocationManager *locationManager;

4.開始定位

- (void)locate

{

    // 推断定位操作是否被同意

    if([CLLocationManager locationServicesEnabled]) {

        self.locationManager = [[CLLocationManager alloc] init] ;

        

        self.locationManager.delegate = self;

    }else {

        //提示用户无法进行定位操作

        UIAlertView *alertView = [[UIAlertView alloc]initWithTitle:

        @"提示" message:@"定位不成功 ,请确认开启定位" delegate:nil cancelButtonTitle:@"取消" otherButtonTitles:@"确定", nil];

        [alertView show];

    }

    // 開始定位

    [self.locationManager startUpdatingLocation];

}

5.实现定位协议回调方法

#pragma mark - CoreLocation Delegate

-(void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations

{

    //此处locations存储了持续更新的位置坐标值,取最后一个值为最新位置,假设不想让其持续更新位置,则在此方法中获取到一个值之后让locationManager stopUpdatingLocation

    CLLocation *currentLocation = [locations lastObject];

    

    // 获取当前所在的城市名

    CLGeocoder *geocoder = [[CLGeocoder alloc] init];

    //依据经纬度反向地理编译出地址信息

    [geocoder reverseGeocodeLocation:currentLocation completionHandler:^(NSArray *array, NSError *error)

     {

         if (array.count > 0)

         {

             CLPlacemark *placemark = [array objectAtIndex:0];

             

             //将获得的全部信息显示到label

             NSLog(@"%@",placemark.name);

             //获取城市

             NSString *city = placemark.locality;

             if (!city) {

                 //四大直辖市的城市信息无法通过locality获得,仅仅能通过获取省份的方法来获得(假设city为空,则可知为直辖市)

                 city = placemark.administrativeArea;

             }

             self.cityName = city;

         }

         else if (error == nil && [array count] == 0)

         {

             NSLog(@"No results were returned.");

         }

         else if (error != nil)

         {

             NSLog(@"An error occurred = %@", error);

         }

     }];

    //系统会一直更新数据。直到选择停止更新。由于我们仅仅须要获得一次经纬度就可以,所以获取之后就停止更新

    [manager stopUpdatingLocation];

}

- (void)locationManager:(CLLocationManager *)manager

       didFailWithError:(NSError *)error {

    

    if (error.code == kCLErrorDenied) {

        // 提示用户出错原因。可按住Option键点击 KCLErrorDenied的查看很多其它出错信息,可打印error.code值查找原因所在

    }

}

转载地址:http://jmtto.baihongyu.com/

你可能感兴趣的文章
美颜代码
查看>>
Linux常用命令(三)文件/目录的打包和压缩
查看>>
NGINX 的安装及平滑升级
查看>>
ES6 对象的解构赋值
查看>>
系统及进程监控
查看>>
MySQL常用函数
查看>>
Doxygen详细介绍
查看>>
让你Python程序软件目录更规范化
查看>>
测者的测试技术手册:揭开java method的一个秘密--巨型函数
查看>>
java基础--1
查看>>
http客户端请求及服务端详解
查看>>
我与Git@OSC的四年多时光
查看>>
MySQL的删除
查看>>
异常类的设计和使用技巧
查看>>
java编码
查看>>
DB2 9.7 备份还原
查看>>
Android Browser学习十四 NetworkStateHandler网络状态监听和处理
查看>>
Linux IO实时监控iostat命令详解
查看>>
DateFormat 线程不安全
查看>>
使用二进制位进行权限控制
查看>>