gpt4 book ai didi

iphone - 充满 NSDictionaries 的 NSArray。如何找到对象的索引?

转载 作者:可可西里 更新时间:2023-11-01 03:22:37 27 4
gpt4 key购买 nike

我有一个数组,里面装满了NSDictionaries。我想找到其中一本字典的 index,但我对这本字典的了解只是键 @"name"的 value我该怎么做 ?

最佳答案

theArray 中查找第一个字典的索引,其 @"name" 的值为 theValue:

NSUInteger index = [theArray indexOfObjectPassingTest:
^BOOL(NSDictionary *dict, NSUInteger idx, BOOL *stop)
{
return [[dict objectForKey:@"name"] isEqual:theValue];
}
];
如果没有找到匹配的对象,

index 将是 NSNotFound

关于iphone - 充满 NSDictionaries 的 NSArray。如何找到对象的索引?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12404722/

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