views:

154

answers:

1

How to use NSPredicate for matching multiple conditions?

I have a query Select * from Entity where name = "Sony" and type ="cd";
How i can give this "and" in NSPredicate...

Please help....

+1  A: 

This is from the Apple developer website and has an example of how to use NSPredicate properly

James Raybould