• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - NSPredicate 用于 NSFetchRequest 中的多个匹配项

[复制链接]
菜鸟教程小白 发表于 2022-12-13 03:58:18 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

首先:对不起,如果标题不是很清楚,我无法将我的问题简单地表达出来!

请考虑以下场景:
- 您正在使用 Core Data 来存储对象
- 你想从你的上下文中获取对象
- 您想包含一个谓词以仅获取具有某些属性的对象
- 您有一个包含键值对的 NSDictionary,其中键表示属性名称,值表示要匹配的所需值

如何最好地实现这一目标?

我目前有以下方法,这是实现此目的的一种快速且可能效率低下的方法:

NSDictionary *attributes = [NSDictionary dictionaryWithObjects: [NSArray arrayWithObjects"value1", @"value2", nil] forKeys: [NSArray arrayWithObjects"attr1", @"attr2", nil] ];

// Build predicate format
NSString *predicate = @"";
NSMutableArray *predicateArguments = [[NSMutableArray alloc] init];
int index = 0;
for (NSString *key in attributes) {
    NSString *value = [attributes objectForKey: key];
    predicate = [predicate stringByAppendingFormat: @"(%@ = %@) %@", key, @"%@", index == [attributes count]-1 ? @"" : @"AND "];
    [predicateArguments addObject: value];
    index++;
}

NSPredicate *matchAttributes = [NSPredicate predicateWithFormat:predicate argumentArray:predicateArguments];

--

有没有更短或更有效的方法来实现这个谓词?

请注意,由于不支持 NSFetchRequest(核心数据),因此 block 谓词不是一个选项



Best Answer-推荐答案


一个稍微短一些,也许更优雅的方法是使用 NSCompoundPredicate:

NSDictionary *attributes = [NSDictionary dictionaryWithObjects: [NSArray arrayWithObjects"value1", @"value2", nil] forKeys: [NSArray arrayWithObjects"attr1", @"attr2", nil] ];

// Build array of sub-predicates:
NSMutableArray *subPredicates = [[NSMutableArray alloc] init];
for (NSString *key in attributes) {
    NSString *value = [attributes objectForKey: key];
    [subPredicates addObject:[NSPredicate predicateWithFormat"%K = %@", key, value]];
}
// Combine all sub-predicates with AND:
NSPredicate *matchAttributes = [NSCompoundPredicate andPredicateWithSubpredicates:subPredicates];

添加:更好(感谢 Paul.s):

NSMutableArray *subPredicates = [[NSMutableArray alloc] init];
[attributes enumerateKeysAndObjectsUsingBlock:^(id key, id value, BOOL *stop) {
    [subPredicates addObject:[NSPredicate predicateWithFormat"%K = %@", key, value]];
}];
NSPredicate *matchAttributes = [NSCompoundPredicate andPredicateWithSubpredicates:subPredicates];

关于ios - NSPredicate 用于 NSFetchRequest 中的多个匹配项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18542144/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap