gpt4 book ai didi

ios - 为什么在我允许后没有使用定位服务?

转载 作者:行者123 更新时间:2023-11-29 02:41:49 24 4
gpt4 key购买 nike

在我的 iOS 应用程序中,我有一个表格,该表格使用您的位置来查找您附近的数据。我今天刚把它安装在我的 iPhone 上,当需要位置服务时,我收到了预期的警告,上面写着“MyAppName 想使用你的当前位置”,一旦我按下确定,应用程序基本上就死机了。然而,当我关闭应用程序并重新打开它时,它运行得非常好。现在我想起来了,这也发生在模拟器上,因为我必须运行该应用程序几次才能让定位服务在那里正常工作。有没有其他人发生过这种情况,您知道如何解决吗?我不希望我的用户必须关闭并重新打开应用才能使位置服务正常工作。

这里是一些相关的代码:

- (void)viewDidLoad
{
[super viewDidLoad];
locationManager = [[CLLocationManager alloc] init];
locationManager.delegate = self;
locationManager.desiredAccuracy = kCLLocationAccuracyBest;
[locationManager startUpdatingLocation];
}
- (void)locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)error
{
NSLog(@"%@",error.userInfo);
if([CLLocationManager locationServicesEnabled]){
NSLog(@"Location Services Enabled");
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Need Your Location"
message:@"Please go to Settings and turn on Location Services so you can see who's near you."
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[alert show];
}
}

- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation
{
NSLog(@"didUpdateToLocation: %@", newLocation);
CLLocation *currentLocation = newLocation;

if (currentLocation != nil) {
_thisGeoPoint = [PFGeoPoint geoPointWithLatitude:currentLocation.coordinate.latitude
longitude:currentLocation.coordinate.longitude];
}
[locationManager stopUpdatingLocation];
located = true;
}

最佳答案

发生这种情况是因为 locationManager 在最初没有权限时停止运行。因此,一旦检测到权限已更改,您将需要重新运行它。您可以使用 didChangeAuthorizationStatus delegate method 检查权限是否已更改。

所以像这样:

- (void)locationManager:(CLLocationManager *)manager didChangeAuthorizationStatus:(CLAuthorizationStatus)status
{
if (status == kCLAuthorizationStatusAuthorized) {
[locationManager startUpdatingLocation];
}
}

关于ios - 为什么在我允许后没有使用定位服务?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25676699/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com