美文网首页ios
iOS 国际化Localiztion

iOS 国际化Localiztion

作者: iCloudEnd | 来源:发表于2015-03-26 17:25 被阅读191次

    小项目基本快收尾了,不过在上线前还有一些工作要做。首先就是语言本地化。平时,我们打开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:快下班了,晚上在完善一下具体步骤

    相关文章

      网友评论

        本文标题:iOS 国际化Localiztion

        本文链接:https://www.haomeiwen.com/subject/sxfnxttx.html