iOS8 地图不走代理处理
应该是这样去解决的。IOS8以后,需要在info.plist文件里面加NSLocationWhenInUseDescription或NSLocationAlwaysUsageDescription。后面的描述随便加。IOS以后需要到CLLocationManager得代理- (void)locationManager:(CLLocationManager *)manager didChangeAuthorizationStatus:(CLAuthorizationStatus)status来判断用户定位的状态。如果状态为kCLAuthorizationStatusNotDetermined,就调用plist里面的相对应的方法(如果你的plist写的是NSLocationWhenInUseDescription就调用[_locationManager requestWhenInUseAuthorization],如果是NSLocationAlwaysUsageDescription就调用[_locationManager requestAlwaysAuthorization])。定位就用- (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations就好了。
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。