我有一个 iOS 应用程序,它使用 Core Data 来保存和检索数据。
如何以自然排序顺序获取按 NSString 类型的字段排序的数据?
现在的结果是:
100_title
10_title
1_title
我需要:
1_title
10_title
100_title
我有一个 iOS 应用程序,它使用 Core Data 来保存和检索数据。
如何以自然排序顺序获取按 NSString 类型的字段排序的数据?
现在的结果是:
100_title
10_title
1_title
我需要:
1_title
10_title
100_title
您可以使用本地化标准比较:作为核心数据获取请求的排序描述符中的选择器,例如
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),
ascending: true,
selector: #selector(NSString.localizedStandardCompare))
fetchRequest.sortDescriptors = [sortDescriptor]
其中“Entity”是 Core Data 托管对象子类的名称。