I\'m trying to prepare multiple search in my CoreData entity Recipes. There are parameters by which I would like to prepare fetch.
Recipes>
use NSCompoundPredicate for your multiple predicates, you can refer NSCompoundPredicate Class Reference
NSCompoundPredicate
something like this:
NSPredicate * andPredicate = [NSCompoundPredicate andPredicateWithSubpredicates:[NSArray arrayWithObjects:predicate1,predicate2,predicate3,nil]];