gpt4 book ai didi

ios - 检索 ValueForKey BOOL 值

转载 作者:行者123 更新时间:2023-12-01 17:20:36 26 4
gpt4 key购买 nike

我将一些对象标记为不事件

[apIndicators[i] setValue:[NSNumber numberWithBool:NO] forKey:@"isActive"];

后来我将其中一些设置为事件状态。然后我必须检查留在“NSMutableArray”中的所有非事件对象。

我必须在 for 循环中做到这一点
for (int i = 0; i < apCount; i++) {
if [apIndicators[i] valueForKey:@"isActive"]) { //the problem is here
//do some stuff with object
}
}

如何获得数组中每个对象的 YES 或 NO 值?
提前致谢。

最佳答案

BOOL active = [[apIndicators[i] valueForKey:@"isActive"] boolValue];

if (active){
// do whatever
}

如果这些 apIndicators 都是 NSDictionaries,你也可以使用快速枚举器来简化循环。
for (NSDictionary *apIndicator in yourArray){
BOOL active = [[apIndicator valueForKey:@"isActive"] boolValue];
if (active){
// do whatever
}
}

关于ios - 检索 ValueForKey BOOL 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21461400/

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