objective-c – 在NSArray上评估NSPredicate(不过滤)

objective-c – 在NSArray上评估NSPredicate(不过滤),第1张

概述是否有可能在NSArray上评估NSPredicate,而不让NSPredicate开始过滤掉数组中的对象? 例如,假设我有以下谓词只检查数组中的对象数: NSPredicate *pred = [NSPredicate predicateWithFormat:@"count == 3"];NSArray *list = [NSArray arrayWithObjects:@"uno", @"d 是否有可能在NSArray上评估nspredicate,而不让nspredicate开始过滤掉数组中的对象?

例如,假设我有以下谓词只检查数组中的对象数:

nspredicate *pred = [nspredicate predicateWithFormat:@"count == 3"];NSArray *List = [NSArray arrayWithObjects:@"uno",@"dos",@"volver",nil];BOol match = [pred evaluateWithObject:List];

这将崩溃,因为pred将尝试从数组中的第一个对象而不是数组本身检索“count”键.

解决方法 使用nspredicate的SIZE运算符,它等效于NSArray的count方法.

nspredicate *pred = [nspredicate predicateWithFormat:@"SELF[SIZE] == 3"];NSArray *List = [NSArray arrayWithObjects:@"uno",nil];BOol match = [pred evaluateWithObject:List];
总结

以上是内存溢出为你收集整理的objective-c – 在NSArray上评估NSPredicate(不过滤)全部内容,希望文章能够帮你解决objective-c – 在NSArray上评估NSPredicate(不过滤)所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1025629.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-23
下一篇 2022-05-23

发表评论

登录后才能评论

评论列表(0条)

保存