Tôi muốn lấy vị trí hiện tại nhưng lại gặp lỗi.
Đây là một đoạn mã của bộ điều khiển chế độ xem của tôi.
- (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);
}
Tôi đang mong đợi phương thức ủy nhiệm locationManager:didUpdateLocations:
được gọi, nhưng thay vào đó, chỉ locationManager:didFailWithError:
được gọi và in ra:
didFailWithError: Error Domain=kCLErrorDomain Code=0 "The operation couldn’t be completed. (kCLErrorDomain error 0.)"