菜鸟教程小白 发表于 2022-12-12 16:26:23

ios - "localizedStandardCompare"取决于 iOS 设备的语言偏好


                                            <p><pre><code>NSSortDescriptor *sortDescriptor = [ initWithKey:@&#34;name&#34; ascending:YES selector:@selector(localizedStandardCompare:)];

];
</code></pre>

<p>我正在开发一个包含名称列表的应用程序,其中所有名称都使用 Íslenska(冰岛)语言。
如果在设置中为应用程序选择的语言是 Íslenska(Icelandic),则上面的代码可以正常工作,但如果语言不是 Íslenska(Icelandic),则排序描述符会失败。</p>

<p>有没有办法解决这个依赖问题?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>这应该创建一个 <code>sortDescriptor</code>,它将使用 <code>is_IS</code> 语言环境比较字符串。</p>

<pre><code>NSSortDescriptor* sortDescriptior =[ initWithKey:@&#34;name&#34; ascending:YES comparator:^(NSString* str1, NSString* str2) {   

static NSStringCompareOptions comparisonOptions =
    NSCaseInsensitiveSearch | NSNumericSearch |
    NSWidthInsensitiveSearch | NSForcedOrderingSearch;

    return ];
}];
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - &#34;localizedStandardCompare&#34;取决于 iOS 设备的语言偏好,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/32859254/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/32859254/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - &#34;localizedStandardCompare&#34;取决于 iOS 设备的语言偏好