Initializer

init(objects:forKeys:)

Initializes a newly allocated dictionary with key-value pairs constructed from the provided arrays of keys and objects. 新しくアロケートされた辞書を、キーとオブジェクトからなるこの提供された配列から組み立てられたキー値ペアで初期化します。

Declaration 宣言

convenience init(objects: [Any], 
         forKeys keys: [NSCopying])

Parameters パラメータ

objects

An array containing the values for the new dictionary. 新しい辞書に対する値を含んでいる配列。

keys

An array containing the keys for the new dictionary. Each key is copied (using copy(with:); keys must conform to the NSCopying protocol), and the copy is added to the new dictionary. 新しい辞書のためのキーを含んでいる配列。各キーは、コピーされます(copy(with:)を使って;キーはNSCopyingプロトコルに準拠しなければなりません)、そしてそのコピーが新しい辞書に加えられます。

Discussion 議論

This method steps through the objects and keys arrays, creating entries in the new dictionary as it goes. An NSInvalidArgumentException is raised if the objects and keys arrays do not have the same number of elements. このメソッドは、オブジェクトそしてキーの配列それぞれを始めから終わりまで一歩ずつ進みます、それが進むにつれて新しい辞書の中の登録項目を作成します。オブジェクトとキーのそれら配列が同じ数の要素を持たないならば、NSInvalidArgumentExceptionが引き起こされます。

See Also 参照

Creating a Dictionary from Objects and Keys 辞書をオブジェクトとキーから作成する

Related Documentation 関連文書