| Inherits from | |
| Conforms to | |
| Framework | /System/Library/Frameworks/Foundation.framework |
| Availability | Available in Mac OS X v10.4 and later.
|
| Companion guide | |
| Declared in | NSComparisonPredicate.h |
NSComparisonPredicate is a subclass of NSPredicate used to compare expressions.
Comparison predicates are predicates used to compare the results of two expressions. Comparison predicates take an operator, a left expression, and a right expression, and return as a BOOL the result of invoking the operator with the results of evaluating the expressions. Expressions are represented by instances of the NSExpression class.
+ predicateWithLeftExpression:rightExpression:customSelector:
+ predicateWithLeftExpression:rightExpression:modifier:type:options:
– initWithLeftExpression:rightExpression:customSelector:
– initWithLeftExpression:rightExpression:modifier:type:options:
– comparisonPredicateModifier
– customSelector
– leftExpression
– options
– predicateOperatorType
– rightExpression
Returns a new predicate formed by combining the left and right expressions using a given selector.
+ (NSPredicate *)predicateWithLeftExpression:(NSExpression *)lhs rightExpression:(NSExpression *)rhs customSelector:(SEL)selector
The left hand side expression.
The right hand side expression.
The selector to use for comparison. The method defined by the selector must take a single argument and return a BOOL value.
A new predicate formed by combining the left and right expressions using selector.
NSComparisonPredicate.h
Creates and returns a predicate of a given type formed by combining given left and right expressions using a given modifier and options.
+ (NSPredicate *)predicateWithLeftExpression:(NSExpression *)lhs rightExpression:(NSExpression *)rhs modifier:(NSComparisonPredicateModifier)modifier type:(NSPredicateOperatorType)type options:(NSUInteger)options
The left hand expression.
The right hand expression.
The modifier to apply.
The predicate operator type.
The options to apply (see NSComparisonPredicate Options).
A new predicate of type type formed by combining the given left and right expressions using the modifier and options.
NSComparisonPredicate.hReturns the comparison predicate modifier for the receiver.
- (NSComparisonPredicateModifier)comparisonPredicateModifier
The comparison predicate modifier for the receiver.
The default value is NSDirectPredicateModifier.
NSComparisonPredicate.hReturns the selector for the receiver.
- (SEL)customSelector
The selector for the receiver, or NULL if there is none.
NSComparisonPredicate.hInitializes a predicate formed by combining given left and right expressions using a given selector.
- (id)initWithLeftExpression:(NSExpression *)lhs rightExpression:(NSExpression *)rhs customSelector:(SEL)selector
The left hand expression.
The right hand expression.
The selector to use. The method defined by the selector must take a single argument and return a BOOL value.
The receiver, initialized by combining the left and right expressions using selector.
NSComparisonPredicate.hInitializes a predicate to a given type formed by combining given left and right expressions using a given modifier and options.
- (id)initWithLeftExpression:(NSExpression *)lhs rightExpression:(NSExpression *)rhs modifier:(NSComparisonPredicateModifier)modifier type:(NSPredicateOperatorType)type options:(NSUInteger)options
The left hand expression.
The right hand expression.
The modifier to apply.
The predicate operator type.
The options to apply (see NSComparisonPredicate Options).
The receiver, initialized to a predicate of type type formed by combining the left and right expressions using the modifier and options.
NSComparisonPredicate.hReturns the left expression for the receiver.
- (NSExpression *)leftExpression
The left expression for the receiver, or nil if there is none.
NSComparisonPredicate.hReturns the options that are set for the receiver.
- (NSUInteger)options
The options that are set for the receiver.
NSComparisonPredicate.hReturns the predicate type for the receiver.
- (NSPredicateOperatorType)predicateOperatorType
The predicate type for the receiver.
NSComparisonPredicate.hReturns the right expression for the receiver.
- (NSExpression *)rightExpression
The right expression for the receiver, or nil if there is none.
NSComparisonPredicate.hThese constants describe the possible types of modifier for NSComparisonPredicate.
typedef enum {
NSDirectPredicateModifier = 0,
NSAllPredicateModifier,
NSAnyPredicateModifier,
} NSComparisonPredicateModifier;
NSDirectPredicateModifierA predicate to compare directly the left and right hand sides.
Available in Mac OS X v10.4 and later.
Declared in NSComparisonPredicate.h
NSAllPredicateModifierA predicate to compare all entries in the destination of a to-many relationship.
The left hand side must be a collection. The corresponding predicate compares each value in the left hand side with the right hand side, and returns NO when it finds the first mismatch—or YES if all match.
Available in Mac OS X v10.4 and later.
Declared in NSComparisonPredicate.h
NSAnyPredicateModifierA predicate to match with any entry in the destination of a to-many relationship.
The left hand side must be a collection. The corresponding predicate compares each value in the left hand side against the right hand side and returns YES when it finds the first match—or NO if no match is found
Available in Mac OS X v10.4 and later.
Declared in NSComparisonPredicate.h
NSComparisonPredicate.hThese constants describe the possible types of string comparison for NSComparisonPredicate.
enum {
NSCaseInsensitivePredicateOption = 0x01,
NSDiacriticInsensitivePredicateOption = 0x02,
};
NSCaseInsensitivePredicateOptionA case-insensitive predicate.
Available in Mac OS X v10.4 and later.
Declared in NSComparisonPredicate.h
NSDiacriticInsensitivePredicateOptionA diacritic-insensitive predicate.
Available in Mac OS X v10.4 and later.
Declared in NSComparisonPredicate.h
NSComparisonPredicate.hDefines the type of comparison for NSComparisonPredicate.
typedef enum {
NSLessThanPredicateOperatorType = 0,
NSLessThanOrEqualToPredicateOperatorType,
NSGreaterThanPredicateOperatorType,
NSGreaterThanOrEqualToPredicateOperatorType,
NSEqualToPredicateOperatorType,
NSNotEqualToPredicateOperatorType,
NSMatchesPredicateOperatorType,
NSLikePredicateOperatorType,
NSBeginsWithPredicateOperatorType,
NSEndsWithPredicateOperatorType,
NSInPredicateOperatorType,
NSCustomSelectorPredicateOperatorType,
NSContainsPredicateOperatorType,
NSBetweenPredicateOperatorType
} NSPredicateOperatorType;
NSLessThanPredicateOperatorTypeA less-than predicate.
Available in Mac OS X v10.4 and later.
Declared in NSComparisonPredicate.h
NSLessThanOrEqualToPredicateOperatorTypeA less-than-or-equal-to predicate.
Available in Mac OS X v10.4 and later.
Declared in NSComparisonPredicate.h
NSGreaterThanPredicateOperatorTypeA greater-than predicate.
Available in Mac OS X v10.4 and later.
Declared in NSComparisonPredicate.h
NSGreaterThanOrEqualToPredicateOperatorTypeA greater-than-or-equal-to predicate.
Available in Mac OS X v10.4 and later.
Declared in NSComparisonPredicate.h
NSEqualToPredicateOperatorTypeAn equal-to predicate.
Available in Mac OS X v10.4 and later.
Declared in NSComparisonPredicate.h
NSNotEqualToPredicateOperatorTypeA not-equal-to predicate.
Available in Mac OS X v10.4 and later.
Declared in NSComparisonPredicate.h
NSMatchesPredicateOperatorTypeA full regular expression matching predicate.
Available in Mac OS X v10.4 and later.
Declared in NSComparisonPredicate.h
NSLikePredicateOperatorTypeA simple subset of the matches predicate, similar in behavior to SQL LIKE.
Available in Mac OS X v10.4 and later.
Declared in NSComparisonPredicate.h
NSBeginsWithPredicateOperatorTypeA begins-with predicate.
Available in Mac OS X v10.4 and later.
Declared in NSComparisonPredicate.h
NSEndsWithPredicateOperatorTypeAn ends-with predicate.
Available in Mac OS X v10.4 and later.
Declared in NSComparisonPredicate.h
NSInPredicateOperatorTypeA predicate to determine if the left hand side is in the right hand side.
For strings, returns YES if the left hand side is a substring of the right hand side . For collections, returns YES if the left hand side is in the right hand side .
Available in Mac OS X v10.4 and later.
Declared in NSComparisonPredicate.h
NSCustomSelectorPredicateOperatorTypePredicate that uses a custom selector that takes a single argument and returns a BOOL value.
The selector is invoked on the left hand side with the right hand side.
Available in Mac OS X v10.4 and later.
Declared in NSComparisonPredicate.h
NSContainsPredicateOperatorTypeA predicate to determine if the left hand side contains the right hand side.
Returns YES if [lhs contains rhs]; the left hand side must be an NSExpression object that evaluates to a collection
Available in Mac OS X v10.5 and later.
Declared in NSComparisonPredicate.h
NSBetweenPredicateOperatorTypeA predicate to determine if the right hand side lies between bounds specified by the left hand side.
Returns YES if [lhs between rhs]; the right hand side must be an array in which the first element sets the lower bound and the second element the upper, inclusive. Comparison is performed using compare: or the class-appropriate equivalent.
Available in Mac OS X v10.5 and later.
Declared in NSComparisonPredicate.h
NSComparisonPredicate.h
Last updated: 2007-04-30