i can get the street and city by applying this code to the MKReversegeocoder
NSString* city = [placemark.addressDictionary valueForKey:@"City"];
NSString* street = [placemark.addressDictionary valueForKey:@"Street"];
now i am trying to get the street number is it possible?
I think what you're looking for is the
subThoroughfareproperty ofMKPlacemark. Note that in iOS 5.0+,subThoroughfareisn't declared onMKPlacemark. It now inherits this from the new superclass,CLPlacemark.