Ich möchte den aktuellen Standort abrufen, erhalte jedoch eine Fehlermeldung.
Dies ist ein Ausschnitt aus meinem View Controller.
- (void)viewDidLoad {
self.locationManager = [[CLLocationManager alloc] init];
[locationManager setDelegate:self];
[locationManager setDesiredAccuracy:kCLLocationAccuracyNearestTenMeters];
[locationManager startUpdatingLocation];
}
- (void)locationManager:(CLLocationManager *)manager
didUpdateLocations:(NSArray<CLLocation *> *)locations {
// I would get the latest location here
// but this method never gets called
}
- (void)locationManager:(CLLocationManager *)manager
didFailWithError:(NSError *)error {
NSLog(@"didFailWithError: %@", error);
}
Ich erwarte, dass die Delegate-Methode locationManager:didUpdateLocations:
aufgerufen wird, aber stattdessen nur locationManager:didFailWithError:
aufgerufen wird und Folgendes ausgibt:
didFailWithError: Error Domain=kCLErrorDomain Code=0 "The operation couldn’t be completed. (kCLErrorDomain error 0.)"