Contents

predicateForObjects(withMetadataKey:operatorType:value:)

Returns a predicate that matches objects based on the provided metadata key, value, and operator.

Declaration

class func predicateForObjects(withMetadataKey key: String, operatorType: NSComparisonPredicate.Operator, value: Any) -> NSPredicate

Parameters

  • key:

    The metadata key for the value to be matched. For a list of preset keys, see Metadata Keys. You may also search using custom keys.

  • operatorType:

    Defines the relationship used to match the metadata’s value with the provided value.

  • value:

    The target value. These values must be Nsstring, Nsnumber, or Nsdate instances.

Return Value

A predicate that matches objects based on the specified metadata key, operator, and value.

Discussion

Use this convenience method to create a predicate that matches objects based on their metadata, an operator, and a target value. When this predicate is evaluated, it gets the metadata’s value for the provided key. Then the predicate compares that value with the target value using the provided operator.

The following sample uses both the convenience method and a predicate format string to create equivalent predicates.

See Also

Related Documentation

Creating object predicates