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