up vote 5 down vote favorite
2
share [g+] share [fb]

I'm localizing my iPhone app for multiple languages, and in addition to changing some of the strings I need to change some backgrounds. Is it possible to query the iPhone and get the user's language code?

Thanks!

link|improve this question

20% accept rate
feedback

2 Answers

Take a look at NSLocale:

NSString   *language = [[NSLocale currentLocale] objectForKey: NSLocaleLanguageCode];
NSString   *countryCode = [[NSLocale currentLocale] objectForKey: NSLocaleCountryCode];
link|improve this answer
feedback

solved my own question!

NSString *language = [[NSLocale preferredLanguages] objectAtIndex:0];
NSLog(@"The device's specified language is %@", language);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.