码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 地理位置反编码

时间:2015-07-27 18:07:18      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:

获取城市的名字,具体还可以获得街道信息,不多说直接上代码:

 

CLLocation *currentLocation = [locations lastObject];

    MJLog(@"currentLocation == %@",currentLocation);

         // 创建位置

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

        [revGeo reverseGeocodeLocation:currentLocation completionHandler:^(NSArray *placemarks, NSError *error) {

         

        // 地理位置反编

         if (!error && [placemarks count] > 0) {

         NSDictionary *dict = [[placemarks objectAtIndex:0] addressDictionary];

         _currentPosition = [dict objectForKey:@"City"];

         MJLog(@"City address: %@",_currentPosition); }

         else  {

         Alert(@"温馨提示", @"获取位置失败");

         MJLog(@"ERROR: %@", error); }

         }];

iOS 地理位置反编码

标签:

原文地址:http://www.cnblogs.com/fantasy3588/p/4680439.html

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