init(objects: UnsafePointer<AnyObject>?, forKeys : UnsafePointer<NSCopying>?, count: Int)
init(object: Any, forKey : NSCopying)
Availability 有効性
Technology
convenience init(objects: [Any],
forKeys keys: [NSCopying
])
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
プロトコルに準拠しなければなりません)、そしてそのコピーが新しい辞書に加えられます。
This method steps through the objects
and keys
arrays, creating entries in the new dictionary as it goes. An NSInvalid
is raised if the objects and keys arrays do not have the same number of elements.
このメソッドは、オブジェクト
そしてキー
の配列それぞれを始めから終わりまで一歩ずつ進みます、それが進むにつれて新しい辞書の中の登録項目を作成します。オブジェクトとキーのそれら配列が同じ数の要素を持たないならば、NSInvalid
が引き起こされます。
init(objects: UnsafePointer<AnyObject>?, forKeys : UnsafePointer<NSCopying>?, count: Int)
init(object: Any, forKey : NSCopying)
- initWithObjectsAndKeys:
+ dictionaryWithObjects:forKeys: