gpt4 book ai didi

ios - 如何编写谓词来过滤字典数组?

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:18:42 25 4
gpt4 key购买 nike

我有字典数组,字典包含作为 NSString 的键和作为整数的值。我尝试了以下代码但没有得到结果。

NSPredicate *objPredicate = [NSPredicate predicateWithFormat:@"%@ = %@", key, [NSNumber numberWithInt:value]];

NSArray *filteredArray = [array filteredArrayUsingPredicate:objPredicate];

最佳答案

使用这个:

NSPredicate *objPredicate = [NSPredicate predicateWithFormat:@"self[%@] = %@", key, @(value)];

NSArray *filteredArray = [array filteredArrayUsingPredicate:objPredicate];

关于ios - 如何编写谓词来过滤字典数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27687895/

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