如何在NSSet或NSArray中搜索具有特定属性特定值的对象?
示例:我有一个包含20个对象的NSSet,每个对象都有一个type
属性。我想得到第一个有[theObject.type isEqualToString:@"standard"]
的对象。
我记得有可能以某种方式使用谓词来表示这种东西,对吗?
答案 0 :(得分:78)
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"type == %@", @"standard"];
NSArray *filteredArray = [myArray filteredArrayUsingPredicate:predicate];
id firstFoundObject = nil;
firstFoundObject = filteredArray.count > 0 ? filteredArray.firstObject : nil;
注意:NSSet中第一个找到对象的概念没有意义,因为集合中对象的顺序是未定义的。
答案 1 :(得分:17)
你可以像杰森和奥莱所描述的那样得到过滤后的数组,但由于你只想要一个对象,我会使用- indexOfObjectPassingTest:
(如果它在一个数组中)或-objectPassingTest:
(如果它在一套)并避免创建第二个数组。
答案 2 :(得分:15)
通常,我使用indexOfObjectPassingTest:
因为我觉得用Objective-C代码而不是NSPredicate
语法表达我的测试更方便。这是一个简单的例子(假设integerValue
实际上是一个属性):
NSArray *array = @[@0,@1,@2,@3];
NSUInteger indexOfTwo = [array indexOfObjectPassingTest:^BOOL(id obj, NSUInteger idx, BOOL *stop) {
return ([(NSNumber *)obj integerValue] == 2);
}];
NSUInteger indexOfFour = [array indexOfObjectPassingTest:^BOOL(id obj, NSUInteger idx, BOOL *stop) {
return ([(NSNumber *)obj integerValue] == 4);
}];
BOOL hasTwo = (indexOfTwo != NSNotFound);
BOOL hasFour = (indexOfFour != NSNotFound);
NSLog(@"hasTwo: %@ (index was %d)", hasTwo ? @"YES" : @"NO", indexOfTwo);
NSLog(@"hasFour: %@ (index was %d)", hasFour ? @"YES" : @"NO", indexOfFour);
此代码的输出为:
hasTwo: YES (index was 2)
hasFour: NO (index was 2147483647)
答案 3 :(得分:4)
NSArray* results = [theFullArray filteredArrayUsingPredicate:[NSPredicate predicateWithFormat:@"SELF.type LIKE[cd] %@", @"standard"]];