iOS 国际化四步。

1: Project -> Info -> Localizations下选择需要支持的语言。

2:新建对应.strings 文件,同事选择对应的语言。用 Localizable.strings 命名

3:对应用名称进行国际化同样需要想用的国际化文件 用 InfoPlist.strings 命名 键值对为 CFBundleName = “App Name”;

4: 常见错误 国际化编码不规范报错如:

read failed: Couldn't parse property list because the input data was in an invalid format
需要带引号
"ClickBtn" = "点击"
原文地址:https://www.cnblogs.com/jisa/p/13181276.html