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

addObject:

Adds a given object to the receiver 与えられたオブジェクトをレシーバに加えます。

Declaration 宣言

- (void)addObject:(id)anObject;

Parameters パラメータ

object

The object to add to the receiver. レシーバに加えられることになるオブジェクト。

Discussion 議論

The same object may be added several times to the same pool; when the pool is deallocated, the object will receive a release message for each time it was added. 同じオブジェクトが何度か同じプールに加えられるかもしれません;そのプールがデアロケートされる時、オブジェクトはreleaseメッセージをそれが加えられた時それぞれに対して受け取ります。

Normally you don’t invoke this method directly—you send autorelease to object instead. 通常あなたはこのメソッドを直接に発動しません — あなたはautoreleaseobjectへ代わりに送ります。

See Also 参照

Adding an Object to a Pool オブジェクトをプールに加える