我想知道我是否正确管理数组的内存。下面我将这个数组与 tableView 一起使用,所以我想在 ViewController 的生命周期中保留它。因为我将它创建为一个属性,所以我对保留计数以及如何处理它有点困惑,因为我在代码中分配了它。以下是我目前对其进行编码的方式。
在.h
@property (nonatomic, retain) NSMutableArray *mutableArray;
米
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];
}
谢谢!