IOS 定位

-(void)reverseGeocoder:(MKReverseGeocoder *)geocoder
      didFindPlacemark:(MKPlacemark *)placemark
{
    NSLog(@"Country = %@", placemark.country);
    NSLog(@"Postal Code = %@", placemark.postalCode);
    NSLog(@"Locality = %@", placemark.locality);
    NSLog(@"address = %@",placemark.name);
    NSLog(@"administrativeArea = %@",placemark.administrativeArea);
    NSLog(@"subAdministrativeArea = %@",placemark.subAdministrativeArea);
    NSLog(@"locality = %@", placemark.locality);
    NSLog(@"thoroughfare = %@", placemark.thoroughfare); 
}

  NSLog(@" = %@", [placeMark.addressDictionary objectForKey:@"State"]);              // 直辖市

  NSLog(@" = %@", [placeMark.addressDictionary objectForKey:@"City"]);               //

NSLog(@" = %@", [placeMark.addressDictionary objectForKey:@"SubLocality"]);        // 
 
原文地址:https://www.cnblogs.com/joesen/p/3629315.html