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

setObject:forKey:

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

Declaration 宣言

- (void)setObject:(ObjectType)anObject 
           forKey:(id<NSCopying>)aKey;

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

See Also 参照

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

Related Documentation 関連文書