关于地图定位
2016-05-05 本文已影响22人
星辰流转轮回
之前用地图,没记得加什么字符,系统会自动弹出授权提示框,今天写的时候一直是定位失败,原工程没问题,但新写工程确实不行,so.逛论坛找到了答案:
1.在info.plist中加入:
NSLocationAlwaysUsageDescription=YES
NSLocationWhenInUseUsageDescription=YES
2.在调用百度SDK定位之前,先运行如下代码:
if ([[UIDevice currentDevice].systemVersion floatValue] >= 8) {
//由于IOS8中定位的授权机制改变 需要进行手动授权
CLLocationManager *locationManager = [[CLLocationManager alloc] init];
//获取授权认证
[locationManager requestAlwaysAuthorization];
[locationManager requestWhenInUseAuthorization];
}