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

objects(forKeys:notFoundMarker:)

Returns as a static array the set of objects from the dictionary that corresponds to the specified keys. この指定されたキーそれらに対応する、その辞書からのオブジェクト一揃いを、静的配列として返します。

Declaration 宣言

func objects(forKeys keys: [Any], 
notFoundMarker marker: Any) -> [Any]

Parameters パラメータ

keys

An NSArray containing the keys for which to return corresponding values. それに対して対応する値を返すことになるキーを含んでいるNSArray

anObject

The marker object to place in the corresponding element of the returned array if an object isn’t found in the dictionary to correspond to a given key. 返される配列のその対応している要素に置くためのマーカーオブジェクト、もしオブジェクトが辞書においてある与えられたキーに対応して見つけられないならば。

Discussion 議論

The objects in the returned array and the keys array have a one-for-one correspondence, so that the nthe object in the returned array corresponds to the nthe key in keys. 返される配列の中のオブジェクト、そしてkeys配列は、一対一の関連を持ちます、それで返される配列の中のn番目のオブジェクトはkeysの中のn番目のキーと対応します。

See Also 参照

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

Related Documentation 関連文書