Initializer
init(object:forKey:)
Creates a dictionary containing a given key and value.
ある与えられたキーと値を含んでいる辞書を作成します。
Declaration
宣言
convenience init(object: Any,
forKey key: NSCopying
)
Parameters
パラメータ
anObject
The value corresponding to aKey
.
aKey
に対応している値。
If this value is nil
, an invalidArgumentException
is raised.
この値がnil
ならば、invalidArgumentException
が引き起こされます。
aKey
The key for anObject
.
anObject
に対するキー。
If this value is nil
, an invalidArgumentException
is raised.
この値がnil
ならば、invalidArgumentException
が引き起こされます。
Return Value
戻り値
A new dictionary containing a single object, anObject
, for a single key, aKey
.
ある単一のオブジェクトanObject
で、ある単一のキーaKey
に対するものを含んでいる新しい辞書。
See Also
参照
Creating a Dictionary from Objects and Keys
辞書をオブジェクトとキーから作成する
init(objects: [Any], forKeys: [NSCopying])
Initializes a newly allocated dictionary with key-value pairs constructed from the provided arrays of keys and objects.
新しくアロケートされた辞書を、キーとオブジェクトからなるこの提供された配列から組み立てられたキー値ペアで初期化します。
Related Documentation
関連文書
+ dictionaryWithObjects:forKeys:
Creates a dictionary containing entries constructed from the contents of an array of keys and an array of values.
キーの配列と値の配列の内容から構成される登録項目を含んでいる辞書を作成します。
+ dictionaryWithObjectsAndKeys:
Creates a dictionary containing entries constructed from the specified set of values and keys.
指定されたひと揃いの値とキーから構成される登録項目を含んでいる辞書を作成します。