I have been programming for ios and I need to get address.
How can I get full address from latitude and longitude in json or other format? Can I get it without internet connection?
Thank you for your attention.
I have been programming for ios and I need to get address. How can
Share
What you need is the
CLGeocoder(on iOS 5) andMKReverseGeocoder(on older iOS versions).Both use Google Maps to get address data so you need an internet connection to get data.
You’ll get address as
NSDictionary, but you can easily convert it to a JSON string with JSONKit or many other tools.