我在 mutableCopy 中有包含 Store 类型对象的数组。我释放数组,我释放数组之前释放所有对象吗?
NSMutableArray *stores=[[NSMutableArray alloc]init];
[stores addObject:[store1 mutableCopy]];
[stores addObject:[store2 mutableCopy]];
[stores addObject:[store3 mutableCopy]];
...
[stores release];