gpt4 book ai didi

iphone - 在 NSMutableSet 中查找具有相同属性值的对象

转载 作者:太空狗 更新时间:2023-10-30 03:48:25 26 4
gpt4 key购买 nike

我有 NSMutableSet 对象。显然所有对象都是唯一的,但它们可能具有相同的 .angle 值,这是 NSInteger 属性。

我需要找出是否有两个或多个具有相同 .angle 值的对象,然后将其分组到一个数组中。

我该怎么做?
任何指导将不胜感激

最佳答案

使用 NSPredicate 的实例来过滤您感兴趣的属性。例如:

NSSet *dogs = [NSSet setWithObjects:
[Dog dogWithName:@"Fido" age:2],
[Dog dogWithName:@"Fluffy" age: 3],
[Dog dogWithName:@"Spot" age:2],
nil];

NSPredicate *predicate = [NSPredicate predicateWithFormat:@"age == %d", 2];
NSSet *twoYearOldDogs = [dogs filteredSetUsingPredicate:predicate];

NSLog(@"%@", twoYearOldDogs);

关于iphone - 在 NSMutableSet 中查找具有相同属性值的对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5921613/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com