Using @min,@max and etc inside a predicate?
Is it possible to use aggregate operator such as @min inside a predicate? BTW The predicate filters an array of objects. NSPredicate *predicate = [NSPredicate predicateWithFormat:@"ANY SELF.score == @min.score"]; I know you can retrieve the min value using the key-value operators eg: NSNumber *minScore = [myArray valueForKeyPath:@"@min.score"]; So far I only get errors about the objects not being key value compliant for "@min". Thanks The reason that you're getting that error is that the predicate is being applied to each object in myArray , and those objects apparently don't support the key