判断当前有无给应用授权定位功能
Posted _Mo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了判断当前有无给应用授权定位功能相关的知识,希望对你有一定的参考价值。
if ([CLLocationManager locationServicesEnabled] && ([CLLocationManager authorizationStatus] == kCLAuthorizationStatusAuthorizedWhenInUse || [CLLocationManager authorizationStatus] == kCLAuthorizationStatusNotDetermined || [CLLocationManager authorizationStatus] == kCLAuthorizationStatusAuthorized)) { //定位功能可用 NSLog(@"定位功能可用"); } else if ([CLLocationManager authorizationStatus] == kCLAuthorizationStatusDenied) { //定位不能用 NSLog(@"定位功能不可用"); }
以上是关于判断当前有无给应用授权定位功能的主要内容,如果未能解决你的问题,请参考以下文章