设置 UILocalizedIndexedCollation 语言顺序
我在应用程序中使用 UILocalizedIndexedCollation 来返回索引表视图。 我的区域设置设置为希伯来语,在索引表上我可以看到包含英语和希伯来语字母的索引列表。
顺序始终相同,首先是英文字母,然后是希伯来字母。是否可以在索引列表中将希伯来字母放在英文字母上方(与通讯录应用程序相同)?
I am using UILocalizedIndexedCollation
in my application to return indexed tableview.
My locale is set to Hebrew and on the indexed table I can see index list with both English and Hebrew letters.
The order is always the same, first English alphabet and then Hebrew alphabet. Is it possible to place Hebrew alphabet above English alphabet in the index list (same as Contacts app)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
无法配置 UILocalizedIndexCollation 来执行此操作。这是一个常见问题,也适用于日语(请参阅 UILocalizedIndexedCollation日本人对联系人/音乐应用程序给予不同的排序)。
如果您想这样做,您需要在使用 UILocalizedIndexCollation 的结果之前自行重新排序。显然,这需要小心确保以相同的方式更改所有数组,并进一步小心确保以正确的顺序获得内容。
There's no way to configure UILocalizedIndexCollation to do this. It's a common problem, it also applies to Japanese (see UILocalizedIndexedCollation for Japanese giving different ordering to contacts/music apps ).
If you want to do it, you need to reorder the results from UILocalizedIndexCollation yourself before you use them. Obviously this requires some care to make sure you change all the arrays in the same way, and further care to make sure you get things in the right order.