Instance Method インスタンスメソッド

setObject(_:forKey:)

Adds a given key-value pair to the dictionary. 与えられたキー値ペアを辞書に加えます。

Declaration 宣言

func setObject(_ anObject: Any, 
        forKey aKey: NSCopying)

Parameters パラメータ

anObject

The value for aKey. A strong reference to the object is maintained by the dictionary. aKeyに対する値。オブジェクトへの強い参照は、辞書によって保守されます。

aKey

The key for value. The key is copied (using copy(with:); keys must conform to the NSCopying protocol). If aKey already exists in the dictionary, anObject takes its place. valueに対するキー。キーはコピーされます(copy(with:)を使って;キーはNSCopyingプロトコルに準拠しなければなりません)。aKeyが既に辞書の中の存在するならば、anObjectがそれの場所を占めます。

See Also 参照

Adding Entries to a Mutable Dictionary 登録項目を可変辞書に加える

Related Documentation 関連文書