Hi there I am using corelocation in my app and everything works fine and well. Except that i would like to have mkreversecoder give me the location in english.
Some parts of my app are dependent on the location, where by, it grabs some data from the server based on the location. The problem here is mkreversecoder follows the phone's language when retrieving the country
So australia becomes 오스트 레일 리아
Is there anyway that i can force mkreversegeocoder to give me location only in english?
Thanks
For now i have chose this method
[[NSUserDefaults standardUserDefaults] setObject: [NSArray arrayWithObjects:@"en", nil] forKey:@"AppleLanguages"];
)Is there any other sane way?