8

我在设置面板中为我的应用程序禁用了位置服务。我在视图控制器的 viewDidLoad 中运行测试以查看它们是否已启用:

if([CLLocationManager locationServicesEnabled]) {
   //Do something now
}

由于某种原因,该测试总是通过。如果我尝试访问位置服务,我会收到位置管理器的 kCLErrorDenied 错误。是什么赋予了?

我是否使用了错误的测试?

4

2 回答 2

25

locationServicesEnabled类方法仅测试位置服务的全局设置。AFAIK,无法测试您的应用是否已被明确拒绝。您必须等待位置请求失败并使用 CLLocationManagerDelegate 方法locationManager:didFailWithError:来执行您需要的任何操作。例如:

- (void)locationManager: (CLLocationManager *)manager
       didFailWithError: (NSError *)error {

    NSString *errorString;
    [manager stopUpdatingLocation];
    NSLog(@"Error: %@",[error localizedDescription]);
    switch([error code]) {
        case kCLErrorDenied:
            //Access denied by user
            errorString = @"Access to Location Services denied by user";
            //Do something...
            break;
        case kCLErrorLocationUnknown:
            //Probably temporary...
            errorString = @"Location data unavailable";
            //Do something else...
            break;
        default:
            errorString = @"An unknown error has occurred";
            break;
        }
    }

    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Error" message:errorString delegate:self cancelButtonTitle:@"Ok" otherButtonTitles:nil, nil];
    [alert show];
    [alert release];
}

有关更多选项,请参阅CLLocationManager 类参考中有关 CLError 常量的文档。

于 2010-08-10T16:36:40.800 回答
20

+authorizationStatusiOS 4.2 现在允许通过 CLLocationManager方法确定位置服务是否已被拒绝。

于 2011-02-03T21:04:11.280 回答