菜鸟教程小白 发表于 2022-12-12 11:05:10

ios - 在 iOS 中处理变格


                                            <p><p>我需要处理变格。该应用程序使用不同的语言(捷克语),其中单词会变为单数或复数。并且基于性别。</p>

<p><strong>英文示例</strong></p>

<blockquote>
<p>1 item, 2 items, 5 items, ... </p>
</blockquote>

<p><strong>目标语言 => 捷克语</strong></p>

<blockquote>
<p>1 položka, 2 položky, 5 položek, ... </p>
</blockquote>

<p>我发现我目前正在浏览的存储库很少。
<a href="https://github.com/adamelliot/Inflections" rel="noreferrer noopener nofollow">https://github.com/adamelliot/Inflections</a> </p>

<p> <a href="https://github.com/mattt/InflectorKit" rel="noreferrer noopener nofollow">https://github.com/mattt/InflectorKit</a> </p>

<p>在 android 上,有一种方法可以通过 xml 来实现。在 iOS 上是否有任何推荐的方法来处理这个问题?我不想使用 if 或开关。 </p>

<p>感谢您的建议和建议。 </p>

<p>马蒂</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>在 iOS(和其他 Apple 平台)中,复数变格和其他随数值变化的本地化字符串通过与其他本地化字符串相同的 API 运行。因此,您只需在代码中调用 <code>NSLocalizedString</code>(无需额外的 if 或开关),但您提供了更多支持本地化数据 - 除了包含 main 的 <code>Localizable.strings</code> 文件(与数字无关的)本地化字符串,您可以为变格添加一个 <code>stringsdict</code> 文件。</p>

<p>Apple 的文档逐步介绍了这一点:请参阅 <a href="https://developer.apple.com/library/ios/documentation/MacOSX/Conceptual/BPInternational/LocalizingYourApp/LocalizingYourApp.html#//apple_ref/doc/uid/10000171i-CH5-SW10" rel="noreferrer noopener nofollow">Handling Noun Plurals and Units of Measurement</a>在他们的<em>国际化和本地化指南</em>中。这里的例子是俄语,IIUC 的复数规则与捷克语相似...但是 <code>stringsdict</code> 格式支持完整的 <a href="http://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html" rel="noreferrer noopener nofollow">Unicode CLDR Plural Rules</a>如果您需要处理更多。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在 iOS 中处理变格,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/36898732/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/36898732/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在 iOS 中处理变格