I have a problem in an app I am building.
I can retrieve the users latitude and longitude, however I need to convert those values into an NSString street address. ie. “123 Park Street, Sydney”.
Any idea as to how I can create a street address from the coordinates?
Look at the documentation for
MKReverseGeocoder.Edit: As stated in the documentation,
MKReverseGeocoderis deprecated in iOS 5.0. Use theCLGeocoderclass instead (documentation here, example code here).