I am using apple map, My app has multiple languages and I want to change the name of the location in the language selected within the app. I am getting detailed information of locality using CLPlacemark
via reversegeocoding
.
Here is my code
CLPlacemark *placemarker = [placemarks lastObject];
NSString *locality = placemarker.thoroughfare ?: placemarker.subLocality ?: placemarker.locality;
but I am unable to get place name in selected language of the app.