ios - "localizedStandardCompare"取决于 iOS 设备的语言偏好
<p><pre><code>NSSortDescriptor *sortDescriptor = [ initWithKey:@"name" 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:@"name" ascending:YES comparator:^(NSString* str1, NSString* str2) {
static NSStringCompareOptions comparisonOptions =
NSCaseInsensitiveSearch | NSNumericSearch |
NSWidthInsensitiveSearch | NSForcedOrderingSearch;
return ];
}];
</code></pre></p>
<p style="font-size: 20px;">关于ios - "localizedStandardCompare"取决于 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]