通常我们像这样使用 NSPredicate:
NSPredicate *matchName = [NSPredicate predicateWithFormat:
@"firstName == %@",@"Miraaj"];
有没有什么可以实现这样的:
NSPredicate *matchNameHash = [NSPredicate predicateWithFormat:
@"hash(firstName) == %@",hash(@"Miraaj")];
IE。它将在匹配属性值的哈希值后过滤记录。