我有一个iOS应用程序,它使用Core Data来保存和检索数据.
如何按自然排序顺序获取按Nsstring类型字段排序的数据?
如何按自然排序顺序获取按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托管对象子类的名称.