目前我有一个使用用户当前地理位置的应用程序。
每当我在我的设备或模拟器上运行该应用程序时,该应用程序就会打开并立即将我的位置服务从“授权”变为“未确定”。出于某种原因,这只发生在我身上,而我的其他开发人员都没有。
我不确定这是我昨晚更新到 6.01 的 Xcode 的问题,还是我的代码中的问题。
我已经尝试为应用程序重置定位服务,但是当我返回应用程序时,它立即将其更改回“未确定”。
知道是什么导致了这个问题吗?有没有人遇到过类似的问题?
下面是来自我的 locationManager 的一段代码。
- (void)locationManager:(CLLocationManager *)manager didChangeAuthorizationStatus:(CLAuthorizationStatus)status{
NSLog(@"did change status");
if ([CLLocationManager authorizationStatus] == kCLAuthorizationStatusNotDetermined) {
NSLog(@"not determined");
} else if ([CLLocationManager authorizationStatus] == kCLAuthorizationStatusAuthorized) {
NSLog(@"Authorized");
[[NSNotificationCenter defaultCenter] postNotificationName:@"Location Services Authorized" object:self];
} else if ([CLLocationManager authorizationStatus] == kCLAuthorizationStatusRestricted){
NSLog(@"restricted");
[[NSNotificationCenter defaultCenter] postNotificationName:@"Location Services Restricted" object:self];
} else if ([CLLocationManager authorizationStatus] == kCLAuthorizationStatusDenied) {
NSLog(@"denied");
[[NSNotificationCenter defaultCenter] postNotificationName:@"Location Services Denied" object:self];
} else {
NSLog(@"can not");