小项目基本快收尾了,不过在上线前还有一些工作要做。首先就是语言本地化。平时,我们打开app时如果突然蹦出的英文或者是法语,相比使用的热情也会大打折扣,因此本地化很重要。
(1)在常用字符串中使用
NSLocalizedString(key, comment)
NSLocalizedString(@"字符串", nil);
(2)使用如下命令生成
find . \( -name '*.m' \) -print0 | xargs -0 genstrings -o en.lproj /
find . \( -name '*.m' -o -name '*.h' \) -print0 | xargs -0 genstrings -o zh-Hans.lproj/
ps:快下班了,晚上在完善一下具体步骤