如何向 NSPredicate 添加连接
Posted
技术标签:
【中文标题】如何向 NSPredicate 添加连接【英文标题】:How to add a conjuction to an NSPredicate 【发布时间】:2009-08-03 13:24:20 【问题描述】:如何使用NSPredicate
匹配多个条件?
我有一个问题Select * from Entity where name = "Sony" and type ="cd";
我怎样才能在NSPredicate
中给这个and
?
【问题讨论】:
【参考方案1】:This 来自 Apple 开发者网站,并提供了如何正确使用 NSPredicate 的示例
【讨论】:
【参考方案2】:如果您在 NSPredicate 中使用 AND 或 OR 条件,这是我的示例:
NSPredicate *predicate =[NSPredicate predicateWithFormat:@"artist contains[cd] %@
OR album contains[cd] %@ OR title contains[cd] %@",
self.searchBar.text, self.searchBar.text, self.searchBar.text];
【讨论】:
以上是关于如何向 NSPredicate 添加连接的主要内容,如果未能解决你的问题,请参考以下文章