mutableCopyにStoreタイプのオブジェクトを含む配列があります。アレイを解放しますが、アレイを解放する前にすべてのオブジェクトを解放しますか?
NSMutableArray *stores=[[NSMutableArray alloc]init];
[stores addObject:[store1 mutableCopy]];
[stores addObject:[store2 mutableCopy]];
[stores addObject:[store3 mutableCopy]];
...
[stores release];