- (void)reverseGeocoder:(MKReverseGeocoder *)geocoder didFindPlacemark:(MKPlacemark *)placemark{
NSString *streetAddress = [NSString stringWithFormat:@"%@",
[placemark.addressDictionary objectForKey:kABPersonAddressStreetKey]];
mapView.userLocation.subtitle = streetAddress;
}
提前谢谢!
答案 0 :(得分:2)
施放参数以杀死警告。
[placemark.addressDictionary objectForKey:(NSString *)kABPersonAddressStreetKey]