【发布时间】:2011-03-07 21:38:24
【问题描述】:
- (void)reverseGeocoder:(MKReverseGeocoder *)geocoder didFindPlacemark:(MKPlacemark *)placemark
{
[self doLog:[placemark.thoroughfare description]]; [self doLog:[placemark.locality description]];
if ([geocoder retainCount]) [geocoder release];
}
显示为:
Text on 2 lines http://cl.ly/035ae51f333a35e79342/content
我怎样才能完成这项工作,以便我可以在同一行显示这些(主要路线和位置)?
【问题讨论】:
标签: iphone xcode formatting logging code-formatting