Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Getting current device language in iOS?

I have an app which uses a tab bar controller with two views. In the first tab, I have taken all of the text fields and localized them. In the second tab, I want to place a translated HTML file for help/instructions on using my app. I have one file for each of the six languages that my app supports.

How can I tell what language the iOS has chosen based on location, so I can load the correct file into the web view?

I have searched Google and SO, and found nothing specific to this question.

share|improve this question
1  
This may help. – Adam Sep 6 '12 at 15:51

marked as duplicate by Josh Caswell, rene, Deanna, Dervall, Xaerxess Sep 7 '12 at 11:03

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 2 down vote accepted

Use

NSString *sysLangCode = [[NSLocale preferredLanguages] objectAtIndex:0];
share|improve this answer
While this is the correct answer to the title, I don't think it's what the OP should use. He seems to have general problems about how to localize an app. – DrummerB Sep 6 '12 at 15:57
1  
DrummerB: I do NOT have a general problem localizing an app... I just needed to know how to tell what the language was, having never had to know before. – spokane-dude Sep 6 '12 at 15:58
@DrummerB this post perfectly answers the "how can I programmatically determine what the localization language is?" question. Furthermore, to the "How can I tell what language the iOS has chosen based on location, so I can load the correct file into the UIWeb view?" one also... – H2CO3 Sep 6 '12 at 16:00
Thank you, H2CO3... I appreciate it... – spokane-dude Sep 6 '12 at 16:06
1  
Well, I still don't understand why you'd want to use NSLocale for this? Why don't you just make the HTML file localizable as you probably did with your .strings file(s) and let iOS handle the rest for you? I've included a localized HTML file in one of my own apps as documentation and it worked fine. – DrummerB Sep 6 '12 at 16:12
show 2 more comments

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