你如何使用NSPredicate
匹配多个条件?
我有一个疑问Select * from Entity where name = "Sony" and type ="cd";
,我该如何and
提供NSPredicate
?
你如何使用NSPredicate
匹配多个条件?
我有一个疑问Select * from Entity where name = "Sony" and type ="cd";
,我该如何and
提供NSPredicate
?
这来自 Apple 开发者网站,并有一个如何正确使用 NSPredicate 的示例
如果您在 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];