Xcode7 本地化的一些处理方式

最近为了使我的一个iOS Demo中系统预设控件显示的语言实现本地化,我便像往常一样去配置Localizations,然而却发现这个过程并不像往常那么顺利……

过去,我是这样添加的:
PROJECT > Info > LocalizationsLanguage列表中添加Chinese,如下图:

Xcode7 本地化的一些处理方式_第1张图片

然而这次我却发现弹出的Resource File对话框中空空如也,如下图:

Xcode7 本地化的一些处理方式_第2张图片

于是,问题应运而生了:为什么过去的本地化方式不好用了?而这些Resource File又出了什么事??翻了翻文档,不过没看太懂,推测应该是我的Project本地没有这些语言文件,所以加不进去。

Language IDs identify a language, dialect, or script and are used to name language-specific resource folders stored in the app bundle. Locale IDs identify a set of regional conventions and are used in APIs—such as the NSLocale, NSDateFormatter, NSNumberFormatter, and NSCalendar classes—where region information is needed to format data. OS X and iOS use standard language ID and locale ID formats that consist of language and region designators. For example, using a language combined with a region designator, a language ID can distinguish between different languages and regional dialects.

既然Xcode项目设置的图形界面不让改,那就去Info.plist看看:
于是发现了这货:

“我之前明明可以添加好几种语言的啊!”(摔)

稍安勿躁,咱们来看看这个键是干嘛的:

CFBundleDevelopmentRegion

CFBundleDevelopmentRegion (String - iOS, OS X) specifies the default language and region for the bundle, as a language ID. For example, English for the United Kingdom has the language ID en-UK. The system uses this value if it cannot locate a resource for the user’s preferred language.

该键为Bundle提供一个默认的语言和地区,当App的本地化列表中没有当前手机系统语言而系统又定位不到用户的首选语言顺序时将采用该语言。关于这个首选语言顺序(Preferred Language)见下图:

Xcode7 本地化的一些处理方式_第3张图片

既然过去动刀的是Localizations,那么就看看Info.plist中有没有这个东西:

Xcode7 本地化的一些处理方式_第4张图片

好了,既然都这么明显了,把想要适配的地区都添加进去就OK了!

最后删删改改试了试,发现如果只设置Localizations仍然符合需求。而且Info.plist默认给出的这个键Localization native development region以及Localizations都不是必须设置的项,如果他们都不被声明,你的iOS App仍然只支持英文。

结论

如果你的App需要支持多国语言,那么Localization native development region以及Localizations的设置很有必要。否则保证两者任意一条键中有中文即可。

至于国际化和本地化的一些更高阶用法,仍需后续补充。

参考:《Internationalization and Localization Guide》

--Xcode Version 7.0.1 (7A1001)

你可能感兴趣的:(Xcode7 本地化的一些处理方式)