The multilingual Implementation of files after Xcode 4.0 has changed.
Take the multi-language text as an example.
1. Right-click the Supporting Files folder and choose NewFile... -> IOS-> Resources-> String Files, named Localizable. strings
2. Select Localizable. strings and click XCode> View> Utilities> show File Inspector.
Or press the button in the upper-right corner to display the right-side toolbar.
4. Add the Localization topic + language such as English or Korean in the toolbar on the right.
After adding, Localizable. strings displays the following status:
5. Just like Xcode 3, add the corresponding string localization information to Localizable. strings (English) and Localizable. strings (Korean ).
Localizable. strings (English)
"Test" = "Test ";
Localizable. strings (Korean)
"Test" = "Korean I won't add Smecta myself ";
6. For multilingual files, see operations 2-4.
From the wild snail guard