I am using MapKit and MKReverseGeocoder in order to convert lat/lon to location. I made some tests and realize that the geocoding response language is set according to iPhone's selected language. How do I set response language explicitly ? I want the response to be in 'en' no matter what. My code is:
MKReverseGeocoder *geocoder = [[MKReverseGeocoder alloc] initWithCoordinate:center];
[geocoder setDelegate:self];
[geocoder start];