Type Method 型メソッド

predicateWithLeftExpression:rightExpression:customSelector:

Returns a new predicate formed by combining the left and right expressions using a given selector. 左および右式をある与えられたセレクタを使って結合することによって形成される新しい述部を返します。

Declaration 宣言

+ (NSComparisonPredicate *)predicateWithLeftExpression:(NSExpression *)lhs 
                                       rightExpression:(NSExpression *)rhs 
                                        customSelector:(SEL)selector;

Parameters パラメータ

lhs

The left hand side expression. 左手側の式。

rhs

The right hand side expression. 右手側の式。

selector

The selector to use for comparison. The method defined by the selector must take a single argument and return a BOOL value. 比較のために使用するセレクタ。セレクタによって定義されるメソッドは、ただ1つの引数を取り、BOOL値を返さなければなりません。

Return Value 戻り値

A new predicate formed by combining the left and right expressions using selector. 左および右式をselectorを使って結合することによって形成される新しい述部。

See Also 参照

Creating Comparison Predicates 比較述部を作成する

Related Documentation 関連文書