首页 > 学院 > 基础常识 > 正文

ios8系统定位问题

2020-03-01 05:42:19
字体:
来源:转载
供稿:网友

 

解决方法:

1.在info.plist中添加key

NSLocationWhenInUseDescription,允许在前台获取GPS的描述

NSLocationAlwaysUsageDescription,允许在后台获取GPS的描述

%20%20%20

%20%20%20

2.在代码定位中,做版本区分和授权请求:

if ([CLLocationManager locationServicesEnabled]){if (!self.locationManager){self.locationManager = [[CLLocationManager alloc] init];}self.locationManager.delegate = self;self.locationManager.distanceFilter=1.0;self.locationManager.desiredAccuracy = kCLLocationAccuracyBest;if([self.locationManager respondsToSelector:@selector(requestAlwaysAuthorization)]){[self.locationManager requestAlwaysAuthorization]; // 永久授权[self.locationManager requestWhenInUseAuthorization]; //使用中授权}[self.locationManager startUpdatingLocation];//开启位置更新self.delegate = delegate;}

ok,解决了。 这个改动也看出了苹果对隐私授权开始进行层次设计,授权不再仅仅是局限于是否的2选1. 这是一件好事!

郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表