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