+ addObject:
Adds a given object to the active autorelease pool in the current thread.
与えられたオブジェクトを現在のスレッドにおけるアクティブオートリリースプールに加えます。
Availability 有効性
Technology
- (void)addObject:(id)anObject;
object
The object to add to the receiver. レシーバに加えられることになるオブジェクト。
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.
通常あなたはこのメソッドを直接に発動しません — あなたはautorelease
をobject
へ代わりに送ります。
+ addObject: