I am getting latitude and longitude using CLLocation. I want to know how I can get the address by using this latitude and longitude. Please help me.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use
MKReverseGeocoderclass for that purpose, which uses google reverse geocoding facilities.Update:
MKReverseGeocoderclass is deprecated in iOS 5, you should use CLGeocoder class from Core Location framework instead. It provides functions for both forward and reverse geocoding – check class reference for more details