- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想得到两个 NSSet 的交集,默认情况下 NSSset 比较对象的每个成员以得出 SetA 和 SetB 中的交集对象。
这是我的代码。
NSMutableDictionary *dic = [[NSMutableDictionary alloc]init];
[dic setObject:@"25" forKey:@"age"];
[dic setObject:@"abc" forKey:@"Name"];
NSMutableDictionary *dic1 = [[NSMutableDictionary alloc]init];
[dic1 setObject:@"21" forKey:@"age"];
[dic1 setObject:@"xyz" forKey:@"Name"];
NSMutableDictionary *dic2 = [[NSMutableDictionary alloc]init];
[dic2 setObject:@"20" forKey:@"age"];
[dic2 setObject:@"abc" forKey:@"Name"];
NSMutableDictionary *dic3 = [[NSMutableDictionary alloc]init];
[dic3 setObject:@"25" forKey:@"age"];
[dic3 setObject:@"abcNameNotMatch" forKey:@"Name"];
NSMutableDictionary *dic4 = [[NSMutableDictionary alloc]init];
[dic3 setObject:@"20" forKey:@"age"];
[dic3 setObject:@"abcNameNotMatch" forKey:@"Name"];
NSArray *a = [NSArray arrayWithObjects:dic,dic1,dic2, nil];
NSArray *b = [NSArray arrayWithObjects:dic3,dic4, nil];
NSMutableSet *setA = [NSMutableSet setWithArray:a];
NSSet *setB = [NSSet setWithArray:b];
//[setA intersectSet:setB];
//NSLog(@"c: %@", [setA allObjects]);
[setA intersectSet:setB];
NSLog(@"d: %@", [setA allObjects]);
我只想根据年龄获取过滤对象(相交)。简而言之,我可以指定 intersectSet 函数应该只比较 SetA 和 SetB.MeanWhile 的年龄,而忽略名称的值。2 对象应该使用我的代码返回 dic 和 dic2。setA 和 setB 中的相交对象是。寻求帮助。
组A
1)dic年龄是25岁
2)dic2 年龄是 20
B组
1)dic3 25岁
2)dic4 年龄是 20
最佳答案
尝试:
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"age in %@.age", setB];
NSSet *result = [setA filteredSetUsingPredicate:predicate];
如果你想修改setA
本身,使用:
[setA filterUsingPredicate:predicate];
例子:
NSMutableSet *setA = [NSMutableSet setWithArray:
@[
@{@"age":@(11), @"Name":@"abc"},
@{@"age":@(11), @"Name":@"def"},
@{@"age":@(22), @"Name":@"ghi"},
@{@"age":@(22), @"Name":@"jkl"},
@{@"age":@(33), @"Name":@"lmn"},
@{@"age":@(33), @"Name":@"opq"},
]];
NSSet *setB = [NSSet setWithArray:
@[
@{@"age":@(11), @"Name":@"rst"},
@{@"age":@(22), @"Name":@"uvw"},
@{@"age":@(22), @"Name":@"xyz"},
]];
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"age in %@.age", setB];
[setA filterUsingPredicate:predicate];
NSLog(@"%@", setA);
输出:
{(
{
Name = abc;
age = 11;
},
{
Name = def;
age = 11;
},
{
Name = ghi;
age = 22;
},
{
Name = jkl;
age = 22;
}
)}
关于ios - 我可以将 NSPredicate 与 NSSet 一起使用吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26903759/
我有一组 ID:[INT]。现在我想选择所有具有这些 id 的对象,但需要遵循 ID 数组中的 id 顺序。 let IDs = [2, 6, 3, 4, 10, 9] let predicate =
假设我有一个用于 NSPredicate 规则的 Core Data 数据库。 enum PredicateType,Int { case beginswith case endswith case
根据 Apples 类引用 CKQuery,运算符 CONTAINS 是受支持的运算符之一。但是,这似乎不起作用。我有一个名为 myRecord 的 RecordType,以及一个字段名称为 name
这是一个非常基本的问题,即使我认为理解了 NSPredicate 的基础知识,我仍然对为什么我在这里遇到错误感到困惑(searchText 是一个指向正在处理的 NSString 对象的指针传递到方法
在我的 iOS 应用程序中,我的获取 Controller 有一个非常简单的谓词。 NSString *format = [NSString stringWithFormat:@"name like[
我知道您不能将 coredata 视为关系数据库,因为它是一个对象图(如果我错了请纠正我)。因此,当您使用谓词调用提取请求时,我对内存中发生的事情有点迷茫。 是先将整个实体加载到 ManageObje
这必须是重复的。但是有这么多 NSPredicate 问题,我找不到合适的问题。 我有一个包含 compositeName 的 Core Data 对象列表 field 。像“艾米莉布朗特”这样的名字
在我的模型中,我有日期属性并设置它 [NSDate date] ,但得到像这样的谓词 NSPredicate *predicate = [NSPredicate predicateWithForma
我知道如何在关系中使用 NSPredicate,但由于某种原因,当我对获取的属性执行相同的操作时,我得到: 由于未捕获的异常“NSInvalidArgumentException”而终止应用程序,原因
首先,感谢您的阅读。 我正在尝试为以下场景构建 NSPredicate。 对象 A 可以有 0 个、1 个或多个对象 B。对象 B 与对象 B 具有逆关系。 我正在尝试对不在 A 中的所有 B 执行获
这个问题基于与我之前的问题相同的应用程序/来源,可以在此处找到: How to manage memory using classes in Objective-C? 我有一个嵌套数组,打印出来时看起
我有以下代码: NSString *mapIDx = @"98"; NSLog(@"map id: %@", mapIDx); NSFetchRequest *request
核心数据NSPredicate中LIKE [c]%@和= [c]%@之间的确切区别是什么?我想搜索一个与接收者完全匹配的字符串。示例: NSArray *arrayNames = [context f
这有点复杂 NSPredicate *predicate = [NSPredicate predicateWithFormat:@"startDate >= %@ AND endDate %@",
我有这个谓词 NSPredicate *myPredicate = [NSPredicate predicateWithFormat:@"(date == %@) && (enabled ==
在核心数据中,我有一个名为关键字的实体,其属性为“文本”。我想找到特定字符串中包含的所有关键字对象。 我尝试过: [NSPredicate predicateWithFormat:@"%@ conta
我需要从多个值数组形成一个谓词。所以我想我可以最初形成一个包含所有值的字符串,然后传递该字符串以在谓词中使用,即 NSString* stringForPredicate = [[NSString
如何使用NSPredicate满足多个条件 NSEntityDescription *entity = [NSEntityDescription entityForName:@"MessageData
这是我的问题。我有这个模型,一个[事件]有多个[日],并且[事件]中有一个称为天的关系,并且[日]中有一个反向关系事件。 现在我想传递 Event 对象并使用 NSFetchedResultsCont
一般我们这样使用 NSPredicate : NSPredicate *matchName = [NSPredicate predicateWithFormat:
我是一名优秀的程序员,十分优秀!