Objective-C

NSPredicate *predicate = [NSPredicate predicateWithFormat: @"self[SIZE] = %d", 5)];

Swift

let predicate = NSPredicate(format: "self[SIZE] >= %d", 5)

In this example, the predicate will match items that are arrays with length of at least 5.