MKReverseGeocoder only showing one placemark
Posted
by Taylor Satula
on Stack Overflow
See other posts from Stack Overflow
or by Taylor Satula
Published on 2010-06-16T21:21:16Z
Indexed on
2010/06/16
21:22 UTC
Read the original article
Hit count: 336
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];
}
© Stack Overflow or respective owner