Вот мой код
CLLocationManager* locationManager = [[[CLLocationManager alloc]init]autorelease];
locationManager.delegate = self;
locationManager.desiredAccuracy = kCLLocationAccuracyBest;
locationManager.distanceFilter = kCLDistanceFilterNone;
[locationManager startUpdatingLocation];
NSLog(@"Latitude :%f",locationManager.location.coordinate.latitude);
CLLocation* currentLocation = [locationManager location];
_drivingReverseGeocoder = [[MKReverseGeocoder alloc] initWithCoordinate:[currentLocation coordinate]];
[_drivingReverseGeocoder setDelegate:self];
[_drivingReverseGeocoder start];
Когда я делаю NSLog, мои long и lat равны 0.000000. Кроме того, я использую симулятор, но я ожидал, что мои long и lat будут в бесконечном цикле, где мое текущее местоположение. У кого-нибудь есть понимание?