配列のメモリを正しく管理しているかどうか疑問に思っています。以下では、この配列をtableViewで使用しているので、ViewControllerの存続期間中はこの配列を保持したいと思います。プロパティとして作成しているので、コードで割り当てているので、保持カウントとその処理方法について少し混乱しています。以下は私が現在それをどのようにコーディングしているかです。
.hで
@property (nonatomic, retain) NSMutableArray *mutableArray;
.mで
self.mutableArray = [NSMutableArray alloc] init];
//fill with object I'm going to be using throughout the life of the viewController
- (void) dealloc {
[mutableArray release];
[super dealloc];
}
ありがとうございました!