+ dictionaryWithObjects:forKeys:
Creates a dictionary containing entries constructed from the contents of an array of keys and an array of values.
キーの配列と値の配列の内容から構成される登録項目を含んでいる辞書を作成します。
+ dictionaryWithObjects:forKeys:count:
Creates a dictionary containing a specified number of objects from a C array.
C配列からある指定された数のオブジェクトを含んでいる辞書を作成します。
- initWithObjects:forKeys:
Initializes a newly allocated dictionary with key-value pairs constructed from the provided arrays of keys and objects.
新しくアロケートされた辞書を、キーとオブジェクトからなるこの提供された配列から組み立てられたキー値ペアで初期化します。
- initWithObjects:forKeys:count:
Initializes a newly allocated dictionary with the specified number of key-value pairs constructed from the provided C arrays of keys and objects.
新しくアロケートされた辞書を、キーとオブジェクトからなるこの提供されたC配列から組み立てられた、指定された数のキー値ペアで初期化します。
+ dictionaryWithObjectsAndKeys:
Creates a dictionary containing entries constructed from the specified set of values and keys.
指定されたひと揃いの値とキーから構成される登録項目を含んでいる辞書を作成します。
- initWithObjectsAndKeys:
Initializes a newly allocated dictionary with entries constructed from the specified set of values and keys.
新しいアロケートされた辞書をその指定されたひと揃いのキーと値から構成される登録項目で初期化します。