Creating an NSPredicate Using predicateWithFormat

suggest change

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.

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents