I am developing an application in which I have to show the address that of the given latitude and longitude.
I have latitude and longitude but I dont know how to get my address from that latitude and longitude.
Any suggestion will be highly appreciated
Thanks in advance!
I am developing an application in which I have to show the address that
Share
I have done something very similar to this recently. With the coordinates you can use MKReverseGeocoder to get the address.
when you find the coordinates,
//called when reverseGeocoder was successfully able to retreive address
//called when reverseGeocoder was unable to retreive address
Hope this helps