views:

93

answers:

1

hi, in my application, i got a map that show the location of the user. But i also need to get the exact adress of where he is and put it in a string.

Any idea how it works?

thx

+1  A: 

Use MKReverseGeocoder. Look at the Apple sample app CurrentAddress.
The placemark object passed into didFindPlacemark has the address fields which you can put into a string.

DyingCactus
thank you very much imma try that
the1nz4ne