MKReverseGeocoder only showing one placemark
- by Taylor Satula
Hi, Something is wrong with my code. It is only showing the final placemark when I try to show the Street and City on one line. I don't know what I am doing wrong (a beginner problem most likely). I hope someone can help my out.
- (void)reverseGeocoder:(MKReverseGeocoder *)geocoder didFindPlacemark:(MKPlacemark *)placemark
{
[self doLog:[placemark.thoroughfare, placemark.locality description]];
if ([geocoder retainCount]) [geocoder release];
}