views:

74

answers:

1

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?

A: 

Look at the documentation for MKReverseGeocoder.

Marcus S. Zarra
Thanks, figured it all out. initWithCoordinate: does the trick :)
Joshua