Multi-language code segment in IOS

Source: Internet
Author: User

Obtain Supported languages

NSUserDefaults *defaults = [ NSUserDefaults standardUserDefaults ];
// Set nsarray * versions ages = [defaults objectforkey: @ "applelanguages"] in all languages supported by the iPhone.
   NSLog ( @"%@" , languages);

Run and print the result:

(

En,

"ZH-HANT ",

"ZH-Hans ",

FR,

De,

Ja,

NL,

It,

Es,

PT,

"Pt-Pt ",

Da,

Fi,

NB,

SV,

Ko,

Ru,

Pl,

Tr,

UK,

Ar,

HR,

CS,

El,

He,

Ro,

SK,

Th,

ID,

"En-GB ",

CA,

Hu,

VI

)

"ZH-HANT" Traditional Chinese

"ZH-Hans", simplified Chinese

This code gets the languages supported by the current system.

3.2 obtain the current language

    NSArray *languages = [NSLocale preferredLanguages];    NSString *currentLanguage = [languages objectAtIndex:0];    NSLog ( @"%@" , currentLanguage);

Print result:

En

You can use the obtained current language to compare it with the supported language to understand the language.

    if([currentLanguage isEqualToString:@"en"])    {        NSLog(@"current Language:en");    } 

Copyright Disclaimer: This article is published at http://blog.csdn.net/totogo2010/original

  • Previous Article: Print debugging method
  • Next article: nsset and nsmutableset ensure data uniqueness
  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.