I have an NSArray that I want to filter out certain objects using an NSPredicate, I was hoping I could use NOT IN since I saw that I can easily do an IN.
So I have m
What about NOT (CategoryID IN %@)?
NOT (CategoryID IN %@)
How about using NONE?
NONE
[NSPredicate predicateWithFormat:@"NONE CategoryID IN %@", parentIDs];