I am able to get the longitude and altitude of user's current location but, not the name of location . I used userLocation property as below:
NSLog(@"Current location=%@",mapView.userLocation);
but, it gives me output as
Current location=<MKUserLocation: 0x1f59e8c0>
I want to get the string value of that location instead of 0x1f59e8c0. How to do this?