- (void)reverseGeocoder:(MKReverseGeocoder *)geocoder didFindPlacemark:(MKPlacemark *)placemark { [self doLog:[placemark.thoroughfare description]]; [self doLog:[placemark.locality description]]; if ([geocoder retainCount]) [geocoder release]; }
Отображается как:
Текст в 2 строки http://cl.ly/035ae51f333a35e79342/content
Как мне сделать так, чтобы я мог отображать их (проезд и местность) в одной строке?
[self doLog:[NSString stringWithFormat:@"%@ %@", placemark.thoroughfare, placemark.locality]];