hugo411
hugo411

Reputation: 356

get address from reverse geocoding

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

How does it work?

Upvotes: 0

Views: 469

Answers (1)

user121301
user121301

Reputation:

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.

Upvotes: 1

Related Questions