Я использую симулятор и мое устройство для проверки этого, но независимо от того, что я делаю, didUpdateToLocation никогда не вызывается. Я попытался изменить свое местоположение в симе, выключить и снова включить мои службы определения местоположения на моем телефоне, чтобы заставить телефон искать новое местоположение ... ничего. В моем viewDidLoad () я запустил CLLocationManager следующим образом:
CLLocationManager *manager = [[CLLocationManager alloc] init];
if (![CLLocationManager locationServicesEnabled])
{
UIAlertView *servicesDisabledAlert = [[UIAlertView alloc] initWithTitle:@"Location Services Disabled" message:@"You currently have all location services for this device disabled. If you proceed, you will be asked to confirm whether location services should be reenabled." delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
[servicesDisabledAlert show];
} else {
manager.desiredAccuracy = kCLLocationAccuracyBest;
manager.delegate = self;
[manager startUpdatingLocation];
}
и в методе обновления местоположения у меня это:
- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation
{
NSLog(@"NEW LOCATION! Accuracy:[%f]",newLocation.horizontalAccuracy);
}
У кого-нибудь есть идеи, почему это не называется?