Instance Method
インスタンスメソッド
value(forKey:)
Returns an ordered set containing the results of invoking valueForKey:
using key on each of the ordered set’s objects.
ある順序集合を返します、valueForKey:
を順序集合のもつオブジェクトのそれぞれでのキーを使って発動する結果を含んでいます。
Declaration
宣言
func value(forKey key: String
) -> Any
Parameters
パラメータ
key
The key to retrieve.
回収するキー。
Return Value
戻り値
The ordered set of the values for the retrieved key. The returned ordered set might not have the same number of members as the receiver.
回収されたキーに対する値からなる順序集合。返される順序集合は、レシーバと同じ数の要素を持たないかもしれません。
Discussion
議論
The returned ordered set will not contain any elements corresponding to instances of valueForKey:
returning nil
, nor will it contain duplicates.
返される順序集合は、nil
を返しているvalueForKey:
のインスタンスに対応しているどんな要素も含まないでしょう、そしてまた重複も含まないでしょう。
See Also
参照
Key-Value Coding Support
キー値コーディングサポート
func setValue(Any?, forKey: String)
Invokes setValue:forKey:
on each of the receiver's members using the specified value and key
setValue:forKey:
をレシーバのメンバのそれぞれで発動します、その指定された値とキーを使います。