CLGeocoder odwraca geokod z podanej lokalizacji

Dana długość i szerokość geograficznanie moja obecna lokalizacja jak mogę wykonać odwrotne wyszukiwanie geokodu za pomocąGLGeocoder?

self.geoCoder = [[CLGeocoder alloc] init];
self.locationManager = [[CLLocationManager alloc] init];
self.locationManager.delegate = self;
//    [self.locationManager startUpdatingLocation];

[self.geoCoder reverseGeocodeLocation: locationManager.location completionHandler: ^(NSArray *placemarks, NSError *error) {
//        [self.locationManager stopUpdatingLocation];

     CLPlacemark *placemark = [placemarks objectAtIndex:0];
    // Long address
    // NSString *locatedAt = [[placemark.addressDictionary valueForKey:@"FormattedAddressLines"] componentsJoinedByString:@", "];
    // Short address
    NSString *locatedAt = [placemark subLocality];

     cell.textLabel.text = spot.name;
     cell.detailTextLabel.text = [NSString stringWithFormat:@"Cab no: %@, spotted at %@", spot.cabno, locatedAt];
 }];

Oczywiście tylko geokoduje moją lokalizację, ale muszę jawnie ustawić długość i szerokość geograficzną na odwrotną.

questionAnswers(2)

yourAnswerToTheQuestion