作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
例如,我有三个NSPredicates。
NSPredicate *pred1 = [NSpredicate ...];
NSPredicate *pred2 = [NSpredicate ...];
NSPredicate *pred3 = [NSpredicate ...];
(1 OR 2 OR 3)
(1 OR 3) AND 2
3 OR (1 AND 2)
最佳答案
您总是可以像这样创建嵌套的NSCompoundPredicate
NSPredicate *orPredicate = [NSCompoundPredicate orPredicateWithSubpredicates:@[firstPredicate, secondPredicate]];
NSPredicate *andPredicate = [NSCompoundPredicate andPredicateWithSubpredicates:@[thirdPredicate, fourthPredicate]];
NSPredicate *finalPredicate = [NSCompoundPredicate andPredicateWithSubpredicates:@[orPredicate, andPredicate]];
关于ios - CompoundPredicate NSPredicate,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36792248/
例如,我有三个NSPredicates。 NSPredicate *pred1 = [NSpredicate ...]; NSPredicate *pred2 = [NSpredicate ...];
我获取了以下 3 个类别,但想添加一个“AND”谓词来缩小结果范围,其中“标记”处于打开状态。 NSMutableArray *questionNumberArray=[[NSMutableArray
我是一名优秀的程序员,十分优秀!