クラス Block があるとします
Class Block : NSObject
ここで、C スタイルで配列を作成します。
Block *blocks[5]; // or calling malloc()
Block *aBlock = [[Block alloc] init];
blocks[0] = aBlock;
// at this point, aBlock will be hand over to array blocks slot.
// not like NSArray, object of 'Block' will not retain by @property(retain)
// or should I call retain before hand over the value into its array and release afterward?
// should I still call below code to release object ?
// [aBlock release];
後でaBlockオブジェクトを解放する必要があるのか 誰かが私に説明できますか?