Type Method 型メソッド

addObject:

Adds a given object to the active autorelease pool in the current thread. 与えられたオブジェクトを現在のスレッドにおけるアクティブオートリリースプールに加えます。

Declaration 宣言

+ (void)addObject:(id)anObject;

Parameters パラメータ

object

The object to add to the active autorelease pool in the current thread. 現在のスレッドにおけるアクティブオートリリースプールに加えることになるオブジェクト。

Discussion 議論

The same object may be added several times to the active pool and, when the pool is deallocated, it 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 オブジェクトをプールに加える