2011-11-30 61 views
1

我可以通过应用此代码的MKReversegeocoder如何获得门牌号码与MKPlacemark

NSString* city = [placemark.addressDictionary valueForKey:@"City"]; 
NSString* street = [placemark.addressDictionary valueForKey:@"Street"]; 

现在我试图让街上数量是有可能得到街道和城市?

回答

2

我认为你要找的是subThoroughfareMKPlacemark的财产。请注意,在iOS 5.0+中,subThoroughfare未在MKPlacemark上声明。它现在继承了新的超类CLPlacemark

2
self.userCoord = [[CLLocation alloc] initWithLatitude:geoPoint.latitude longitude:geoPoint.longitude]; 

     CLGeocoder * geoCoder = [[CLGeocoder alloc] init]; 
     [geoCoder reverseGeocodeLocation:self.userCoord completionHandler:^(NSArray *placemarks, NSError *error) 
     { 
      if (error == nil && [placemarks count] > 0) 
      { 
       CLPlacemark *placemark = [placemarks lastObject]; 
       self.city.text = placemark.locality; 
       self.street.text = placemark.thoroughfare; 
       self.house.text = place mark.subThoroughfare; 
      } 
     } 
// address dictionary properties 
@property (nonatomic, readonly, copy) NSString *name; // eg. Apple Inc. 
@property (nonatomic, readonly, copy) NSString *thoroughfare; // street address, eg. 1 Infinite Loop 
@property (nonatomic, readonly, copy) NSString *subThoroughfare; // eg. 1 
@property (nonatomic, readonly, copy) NSString *locality; // city, eg. Cupertino 
@property (nonatomic, readonly, copy) NSString *subLocality; // neighborhood, common name, eg. Mission District 
@property (nonatomic, readonly, copy) NSString *administrativeArea; // state, eg. CA 
@property (nonatomic, readonly, copy) NSString *subAdministrativeArea; // county, eg. Santa Clara 
@property (nonatomic, readonly, copy) NSString *postalCode; // zip code, eg. 95014 
@property (nonatomic, readonly, copy) NSString *ISOcountryCode; // eg. US 
@property (nonatomic, readonly, copy) NSString *country; // eg. United States 
@property (nonatomic, readonly, copy) NSString *inlandWater; // eg. Lake Tahoe 
@property (nonatomic, readonly, copy) NSString *ocean; // eg. Pacific Ocean 
@property (nonatomic, readonly, copy) NSArray *areasOfInterest; // eg. Golden Gate Park 
+0

请您详细解释一下您的答案,再加一点关于您提供的解决方案的描述? – abarisone