I have a new problem with location updating in iOS8.
in viewDidAppear
I call my location manager:
//start location updating
locationManager = [[CLLocationManager alloc] init];
locationManager.delegate = self;
locationManager.desiredAccuracy = kCLLocationAccuracyBest;
[locationManager startUpdatingLocation];
however this void
- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation{
currentLocation = newLocation;
}
never gets called. It's weird, I'm quite sure it worked when I was in Finland still (using my cellular data). Now I'm travelling in Brasil (only using wifi) and I cannot get it to work here, which is totally weird. my wifi access point seems to be known so I'm confused. any ideas?