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

value(forKey:)

Returns the value associated with a given key. 与えられたキーと結びつけられた値を返します。

Declaration 宣言

func value(forKey key: String) -> Any?

Parameters パラメータ

key

The key for which to return the corresponding value. Note that when using key-value coding, the key must be a string (see Accessing Object Properties). それに対して対応する値を返すことになるキー。キー値コーディングを使う場合、キーは文字列でなければなりません(Accessing Object Propertiesを見てください)。

Return Value 戻り値

The value associated with key. keyと結び付けられたキー。

Discussion 議論

If key does not start with “@”, invokes object(forKey:). If key does start with “@”, strips the “@” and invokes [super valueForKey:] with the rest of the key. keyが “@” で始まらないならば、object(forKey:)を発動します。keyが “@” で始まるならば、その “@” は剥ぎ取られて、[super valueForKey:]をそのキーの残りで発動します。

See Also 参照

Accessing Keys and Values キーと値にアクセスする

Related Documentation 関連文書