Hi,
I need to get the current location name of the iphone user. How can i get the location name. i am new to iphone development please help
Thanks,
Hi,
I need to get the current location name of the iphone user. How can i get the location name. i am new to iphone development please help
Thanks,
You can get location name by co-ordinates. For that, you will need to use MKReverseGeocoder class.
MKReverseGeocoder *reverseGeocoder=[[MKReverseGeocoder alloc]initWithCoordinate:yourcoordinate];
reverseGeocoder.delegate = self;
[reverseGeocoder start];
You will need to include MKReverseGeocoderDelegate protocol and use its method
You can more information by looking at documentation of MKReverseGeocoder.
Hope it helps.