IOS城市定位的简单展示

来源:爱站网时间:2021-02-25编辑:网友分享
很多定位功能在操作中都有一定的难度,而定位在移动开发中都要获得城市数据等等,今天爱站技术频道主要介绍了IOS城市定位的简单展示,希望能为你带来帮助。

很多定位功能在操作中都有一定的难度,而定位在移动开发中都要获得城市数据等等,今天爱站技术频道主要介绍了IOS城市定位的简单展示,希望能为你带来帮助。

IOS 城市定位

前言:

获取经纬度并且转换成城市

iOS8定位失败解决

获取中文城市

1、建立简单的项目, 导入CoreLoation.framework:

image

2、在Info.plist中加上NSLocationAlwaysUsageDescription值为AlwaysLocation

image

3、使用CLLocationManager对象进行定位:

 

_locationManger = [[CLLocationManager alloc] init]; 
_locationManger.delegate = self; 
[_locationManger requestAlwaysAuthorization];//iOS8需要加上,不然定位失败 
_locationManger.desiredAccuracy = kCLLocationAccuracyBest;  //最精确模式 
_locationManger.distanceFilter = 100.0f; //至少10米才请求一次数据 
[_locationManger startUpdatingLocation]; //开始定位 

4、在CLLocationManagerDelegate代理方法(iOS8)中获取定位信息并且转换成中文城市:

 

- (void)locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)error{ 
  NSLog(@"定位失败"); 
  [_locationManger stopUpdatingLocation];//关闭定位 
} 
 
- (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations{ 
NSLog(@"定位成功"); 
[_locationManger stopUpdatingLocation];//关闭定位 
 
CLLocation *newLocation = locations[0]; 
NSLog(@"%@",[NSString stringWithFormat:@"经度:%3.5f\n纬度:%3.5f",newLocation.coordinate.latitude, newLocation.coordinate.longitude]); 
 
// 保存 设备 的当前语言 
NSMutableArray *userDefaultLanguages = [[NSUserDefaults standardUserDefaults] objectForKey:@"AppleLanguages"]; 
// 强制 成 简体中文 
[[NSUserDefaults standardUserDefaults] setObject:[NSArray arrayWithObjects:@"zh-hans", nil nil] forKey:@"AppleLanguages"]; 
CLGeocoder * geoCoder = [[CLGeocoder alloc] init]; 
[geoCoder reverseGeocodeLocation:newLocation completionHandler:^(NSArray *placemarks, NSError *error) { 
  for (CLPlacemark * placemark in placemarks) { 
 
    NSDictionary *test = [placemark addressDictionary]; 
    // Country(国家) State(城市) SubLocality(区) 
    NSLog(@"%@", [test objectForKey:@"State"]); 
 
    // 当前设备 在强制将城市改成 简体中文 后再还原之前的语言 
    [[NSUserDefaults standardUserDefaults] setObject:userDefaultLanguages forKey:@"AppleLanguages"]; 
  } 
}];   
} 

 

首次启动时,会提示是否开启定位并显示NSLocationAlwaysUsageDescription的值:

image

其中字典test的具体内容是:

image

相信大家看完爱站技术频道介绍的IOS城市定位的简单展示,应该知道怎么操作了,只要大家足够努力,开发并不是什么难题。

上一篇:ios之xcode调试的命令和断点排序

下一篇:IOS开发中通讯录的中文首字母的排序参数

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载