如何根据对象的属性比较两个NSSets?

时间:2011-09-30 17:26:45

标签: iphone objective-c ios ipad nsset

我有两个nssets。

nsset1: person.id = 1, person.id = 2, person.id = 3
nsset2: person.id = 1, person.id = 2

结果应该是:

nsset1 - nsset2: person (with id 3)
nsset2 - nsset1: null

这两个集合中具有相同id的对象是不同的对象,所以我不能简单地做minusSet。

我想做类似的事情:

nsset1: person.id = 1, person.id = 2, person.id = 3
nsset2: person.id = 4, person.id = 5

结果应该是这样的:

nsset1 - nsset2: person (id 1), person (id 2), person (id 3)
nsset2 - nsset1: person (id 4), person (id 5)

这样做的最佳方式是什么?

2 个答案:

答案 0 :(得分:8)

@ AliSoftware的回答是一个有趣的方法。 NSPredicate在核心数据之外相当慢,但通常都很好。如果性能有问题,你可以使用循环实现相同的算法,这是一些代码行,但通常更快。

另一种方法是询问具有相同身份证的两个人是否应始终被视为等同。如果这是真的,那么您可以为此类人员覆盖isEqual:hash(假设identifier是NSUInteger):

- (BOOL)isEqual:(id)other {
  if ([other isMemberOfClass:[self class]) {
    return ([other identifier] == [self identifier]);
  }
  return NO;
}

- (NSUInteger)hash {
  return [self identifier];
}

执行此操作,所有NSSet操作都会将具有相同标识符的对象视为相等,因此您可以使用minusSet。此外,NSMutableSet addObject:会自动为您标识唯一身份。

实施isEqual:hash具有广泛影响,因此您需要确保遇到具有相同标识符的两个人对象的每个地方,应将它们视为相等。但如果是这种情况,这会大大简化并加快您的代码。

答案 1 :(得分:5)

你应该尝试这样的事情

NSSet* nsset1 = [NSSet setWithObjects:person_with_id_1, person_with_id_2, person_with_id_3, nil];
NSSet* nsset2 = [NSSet setWithObjects:person_with_id_2, person_with_id_4, nil];

// retrieve the IDs of the objects in nsset2
NSSet* nsset2_ids = [nsset2 valueForKey:@"objectID"]; 
// only keep the objects of nsset1 whose 'id' are not in nsset2_ids
NSSet* nsset1_minus_nsset2 = [nsset1 filteredSetUsingPredicate:
    [NSPredicate predicateWithFormat:@"NOT objectID IN %@",nsset2_ids]];