+ dictionaryWithObjects:forKeys:count:
- initWithObjects:forKeys:
- initWithObjects:forKeys:count:
+ dictionaryWithObjectsAndKeys:
- initWithObjectsAndKeys:
+ dictionaryWithObject:forKey:
Availability 有効性
Technology
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
; keys must conform to the NSCopying
protocol), and the copy is added to the dictionary.
新しい辞書のためのキーを含んでいる配列。各キーは、コピーされます(copy
を使って;キーはNSCopying
プロトコルに準拠しなければなりません)、そしてそのコピーが辞書に加えられます。
A new dictionary containing entries constructed from the contents of objects
and keys
.
objects
とkeys
の内容から構成される登録項目を含んでいる新しい辞書。
This method steps through the objects
and keys
arrays, creating entries in the new dictionary as it goes. An NSInvalid
is raised if objects and keys don’t have the same number of elements.
このメソッドは、オブジェクト
そしてキー
の配列それぞれを始めから終わりまで一歩ずつ進みます、それが進むにつれて新しい辞書の中の登録項目を作成します。オブジェクトとキーが同じ数の要素を持たないならば、NSInvalid
が引き起こされます。
+ dictionaryWithObjects:forKeys:count:
- initWithObjects:forKeys:
- initWithObjects:forKeys:count:
+ dictionaryWithObjectsAndKeys:
- initWithObjectsAndKeys:
+ dictionaryWithObject:forKey: