Multi-language free switching within iOS development app

Source: Internet
Author: User

Requirements Description: The application has a button inside, click Switch language (such as Chinese and English toggle).
Said this is a long time ago to do a function point, the beginning is no clue, and later solved the discovery is very simple, the method to share.
1. Principle.
View the definition of nslocalizedstring (@ "abc", nil);

?
1 2 #define NSLOCALIZEDSTRING (key, comment) \          [[ Code class= "OBJC keyword" >nsbundle mainbundle] Localizedstringforkey: (key) value:@ table: nil


Then think about why this definition will be located in the current system default language corresponding to the strings file?
If this is the case, then the problem is solved, isn't it?

2. Specific analysis
Redefine nslocalizedstring.

?
1 2 3 #define AppLanguage @"appLanguage"#define CustomLocalizedString(key, comment) \[[ nsbundle Code class= "OBJC plain" >bundlewithpath:[[ nsbundle mainbundle] pathforresource:[ nsstring stringwithformat:@ ,[[ nsuserdefaults standarduserdefaults] objectforkey:@ "Applanguage" ]] oftype:@ Code class= "OBJC string" > "lproj" ] "Localizedstringforkey: (key) value:@ table: nil


You don't have to explain, do you? Find the corresponding strings file.

3. Usage

?
1 2 3 4      if (![[NSUserDefaults standardUserDefaults]objectForKey:AppLanguage]) {            [[NSUserDefaults standardUserDefaults] setObject:@"zh-Hans" forKey:AppLanguage];        }label.text= CustomLocalizedString(@"sub_menu_download", nil);//@"离线下载";



4. Toggle
When you click the toggle button in English,

?
1 2 3 4 5 6 7 8 NSString *currentLanguage = [[NSUserDefaults standardUserDefaults]objectForKey:AppLanguage];        if ([currentLanguage isEqualToString: @"en"]) {            [[NSUserDefaults standardUserDefaults] setObject:@"zh-Hans" forKey:AppLanguage];        }else        {            [[NSUserDefaults standardUserDefaults] setObject:@"en" forKey:AppLanguage];        }        [[NSUserDefaults standardUserDefaults] synchronize];


The program also has to do further interface-related processing, such as Tabbar re-initialization and so on

Multi-language free switching within iOS development app

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.