我有字典数组,字典包含作为 NSString 的键和作为整数的值。我尝试了以下代码,但没有得到结果。
NSPredicate *objPredicate = [NSPredicate predicateWithFormat"%@ = %@", key, [NSNumber numberWithInt:value]];
NSArray *filteredArray = [array filteredArrayUsingPredicatebjPredicate];
使用这个:
NSPredicate *objPredicate = [NSPredicate predicateWithFormat"self[%@] = %@", key, @(value)];
NSArray *filteredArray = [array filteredArrayUsingPredicatebjPredicate];
关于ios - 如何编写谓词来过滤字典数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27687895/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |