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

addObject:

Adds a given object to the set. ある与えられたオブジェクトを集合に追加します。

Declaration 宣言

- (void)addObject:(ObjectType)object;

Parameters パラメータ

anObject

The object to add to the set. 集合に加えることになるオブジェクト。

Discussion 議論

If anObject is already a member, addObject: increments the count associated with the object. If anObject is not already a member, it is sent a retain message. anObjectがすでに1メンバーならば、addObject:はそのオブジェクトと結び付けられる計数を漸増します。anObjectがまだメンバーでないならば、それはretainメッセージを送られます。

See Also 参照

Adding and Removing Entries 登録項目の追加と除去