there is a method for pfquery
PFQuery *query = [PFQuery queryWithClassName:@"class"]; [query whereKey:(NSString *)key containsAllObjectsInArray:(NSArray *)array];
Is there a similar method for determining if the specified object is in the NO array? as
[query whereKey:(NSString *)key doesNotContainAllObjectsInArray:(NSArray *)array]
If not, how do you code this method yourself?
source share