Reference
[1] http://developer.apple.com/library/ios/#documentation/MacOSX/Conceptual/BPInternational/Articles/LocalizingPathnames.html#//apple_ref/doc/uid/20002141-BBCFJBFB
If an app is released in different countries, You Need To localize or internationalize the app. Select the corresponding resource based on the language type of the device and display the correct icons and text. In addition, I searched for localization on the Internet and found that many operations were different due to the xcode upgrade. Therefore, this article uses the latest xcode4.5 as an example.
1. Localization of APP display names
1) Select the project and press the + number in localizations in info to create localization for infoplist. Strings and storyboard.
2)
Add "cfbundledisplayname" =
"Testlocalization ";
Add "cfbundledisplayname" = "localization test" in infoplist. Strings (Chinese ";
3) The running result is as follows:
When device is an English environment
When device is a Chinese Environment
Note:
For details, refer to the lshaslocalizeddisplayname of info. plist in the Apple document [1]. Set it to yes, but the test shows that it is fine if it is not set.