I'd like to show the current language that the device UI is using. What code would I use?
I want this as an NSString in fully spelled out format. (Not @"en_US")
|
I'd like to show the current language that the device UI is using. What code would I use? I want this as an NSString in fully spelled out format. (Not @"en_US") |
|||
|
|
|
The solutions provided will actually return the current region of the device - not the currently selected language. These are often one and the same. However, if I am in North America and I set my language to Japanese, my region will still be English (United States). In order to retrieve the currently selected language, you can do:
This will return a two letter code for the currently selected language. "en" for English, "es" for Spanish, "de" for German, etc. For more examples, please see this Wikipedia entry (in particular, the 639-1 column): http://en.wikipedia.org/wiki/List_of_ISO_639-1_codes Then it's a simple matter of converting the two letter codes to the string you would like to display. So if it's "en", display "English". Hope this helps someone that's looking to differentiate between region and currently selected language. |
|||||||||||||||||||||
|
|
This will probably give you what you want:
It will show the name of the language, in the language itself. For example:
|
|||
|
The selected answer returns the current device language, but not the actual language used in the app. If you don't provide a localization for the preferred language in your app, the first available in the preferred order is used. To know the current language selected within your localizations use
Example:
|
||||
|
|
|
You can use the
This will print out:
If you specify the same locale identifier for the |
|||
|
|
|
For MonoTouch C# developers use:
PreferredLanguages is an array, and it may never be empty and you could use:
But I prefer to be safe. Note: I know this was an iOS question, but as I am a MonoTouch developer, the answer on this page led me in the right direction and I thought I'd share the results. |
|||||||
|
|
i use this
ignore memory leak.. and result is
|
|||
|
|