Given a longitude and latitude not my current location how can I perform a reverse geocode lookup using GLGeocoder
?
self.geoCod
If you use the simulator, you can debug>location>Custom Location then put in lat long to simulate a location anywhere.
I never tried this, but can't you create your own CLLocation object?
If you know current longitude and latitude you can -
CLLocation *location = [[CLLocation alloc]initWithLatitude:someValue longitude:someValue];
[self.geoCoder reverseGeocodeLocation: location completionHandler: ^(NSArray *placemarks, NSError *error) {
//do something
});