ios – 使用NSPredicate搜索/过滤自定义类数组

前端之家收集整理的这篇文章主要介绍了ios – 使用NSPredicate搜索/过滤自定义类数组前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个包含自定义类对象的数组,我想基于其中一个类属性是否包含自定义字符串来过滤数组.我有一个方法,传递我想要搜索属性(列)和它将搜索的字符串(searchString).这是我的代码
NSPredicate *query = [NSPredicate predicateWithFormat:@"%K contains %K",column,searchString];
NSMutableArray *temp = [displayProviders mutableCopy];
[displayProviders release];
displayProviders = [[temp filteredArrayUsingPredicate:query] mutableCopy];
[temp release];

但是,它始终抛出异常
displayProviders = [[temp filteredArrayUsingPredicate:query] mutableCopy];
说这个类不是密钥值编码兼容的密钥[无论searchString是什么].

我有什么想法我做错了吗?

解决方法

[NSPredicate predicateWithFormat:@"%@ contains %@",searchString];

在谓词格式字符串中使用%@ substitution时,生成的表达式将是常量值.听起来你不想要一个恒定的价值;相反,您希望将属性名称解释为键路径.

换句话说,如果你这样做:

NSString *column = @"name";
NSString *searchString = @"Dave";
NSPredicate *p = [NSPredicate predicateWithFormat:@"%@ contains %@",searchString];

这相当于:

p = [NSPredicate predicateWithFormat:@"'name' contains 'Dave'"];

这与以下相同:

BOOL contains = [@"name rangeOfString:@"Dave"].location != NSNotFound;
// "contains" will ALWAYS be false
// since the string "name" does not contain "Dave"

这显然不是你想要的.你想要相当于这个:

p = [NSPredicate predicateWithFormat:@"name contains 'Dave'"];

为了实现这一点,您不能使用%@作为格式说明符.你必须使用%K. %K是谓词格式字符串唯一的说明符,它表示替换字符串应该被解释为键路径(即属性名称),而不是文字字符串.

所以你的代码应该是:

NSPredicate *query = [NSPredicate predicateWithFormat:@"%K contains %@",searchString];

使用@“%K包含%K”也不起作用,因为它与以下内容相同:

[NSPredicate predicateWithFormat:@"name contains Dave"]

这与以下相同:

BOOL contains = [[object name] rangeOfString:[object Dave]].location != NSNotFound;
原文链接:https://www.f2er.com/iOS/330870.html

猜你在找的iOS相关文章