Instance Method インスタンスメソッド

expressionValueWithObject:context:

Evaluates an expression using a specified object and context. ある式をある指定されたオブジェクトと文脈を使って評価します。

Declaration 宣言

- (id)expressionValueWithObject:(id)object 
                        context:(NSMutableDictionary *)context;

Parameters パラメータ

object

The object against which the expression is evaluated. このオブジェクトを考慮して式が評価されます。

context

A dictionary that the expression can use to store temporary state for one predicate evaluation. Can be nil. ある辞書、それは式が使用可能で、一時的状態をひとつの述部評価のために格納するものです。nilであることが可能です。

Note that context is mutable, and that it can only be accessed during the evaluation of the expression. You must not attempt to retain it for use elsewhere. contextが可変であること、そしてそれはアクセスされるのが式の評価の間だけ可能であることに注意してください。あなたは、それをどこか他で使うために保持しようとしてはいけません。

Return Value 戻り値

The evaluated object. 評価されたオブジェクト。

See Also 参照

Evaluating an Expression 式を評価する