iOS:自然排序顺序

前端之家收集整理的这篇文章主要介绍了iOS:自然排序顺序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个iOS应用程序,它使用Core Data来保存和检索数据.
如何按自然排序顺序获取按NSString类型字段排序的数据?

现在的结果是:

100_title
10_title
1_title

我需要:

1_title
10_title
100_title

解决方法

例如,您可以在核心数据提取请求的排序描述符中使用 localizedStandardCompare:作为选择器
NSSortDescriptor *titleSort = [[NSSortDescriptor alloc] initWithKey:@"title"
                                  ascending:YES 
                                   selector:@selector(localizedStandardCompare:)];
[fetchRequest setSortDescriptors:[titleSort]];

斯威夫特3:

let titleSort = NSSortDescriptor(key: "title",ascending: true,selector: #selector(NSString.localizedStandardCompare))
fetchRequest.sortDescriptors = [sortDescriptor]

或更好

let titleSort = NSSortDescriptor(key: #keyPath(Entity.title),selector: #selector(NSString.localizedStandardCompare))
fetchRequest.sortDescriptors = [sortDescriptor]

其中“Entity”是Core Data托管对象子类的名称.

原文链接:https://www.f2er.com/iOS/335593.html

猜你在找的iOS相关文章