implement the MKReverseGeocoderDelegate
implements <MKReverseGeocoderDelegate>
Add an instance variable:
MKReverseGeocoder *_reverseGeocoder;
Create your reverse geocoder object:
CLLocationCoordinate2D location;
location.latitude = latitude; // You said you had this value
location.longitude = longitude; // You said you had this value
_reverseGeocoder = [[MKReverseGeocoder alloc]initWithCoordinate:location];
_reverseGeocoder.delegate = self;
[_reverseGeocoder start];
Implement the following delegate function:
- (void)reverseGeocoder:(MKReverseGeocoder *)geocoder didFindPlacemark:(MKPlacemark *)placemark
{
/// placemark has your location!
}