ios 国际化相关

添加国际化

1. 代码中使用字符串的地方 使用 NSLocalizedString(@"keyName",@"comment")

2. genstrings 扫描 .m 文件 ,生成 Localizable.strings

3. 在项目目录里生成en.lproj zh-Hans.lproj文件夹, 把Localizable.strings 放进去

4. 把Localizable.strings添加成项目的资源文件(copy bundle resources),确保打包的时候会被copy进去,

程序名国际化

en.lproj/InfoPlist.strings 添加
CFBundleName="EnglishName";   
CFBundleDisplayName="EnglishName";

Settings.bundle 国际化

写道
Settings.bundle/en.lproj/Root.strings

"version"="Version";

Root.plist的 title写 version, 显示的就是Version

检测用户locale

//这里实际检测出的是region format设定  不是language设定

CFLocaleGetIdentifier(CFLocaleCopyCurrent())      //zh_CN
[[NSLocaleautoupdatingCurrentLocale] localeIdentifier  //zh_CN]
 

相关推荐