我的应用程序崩溃了dealloc
,但只是有时。
我创建了一个数组来缓存 5 个对象。当用户点击右侧或左侧时,会添加一个新对象并删除最后一个对象。当我测试应用程序时,在点击左右按钮 100-500 次后,应用程序崩溃了。
应用程序在该方法中崩溃,dealloc
但所有对象都已正确分配和释放。
我的dealloc
方法:
- (void)dealloc
{
[super dealloc];
[_sImageLane release];
[_sTipoLane release];
[_maRecomended release];
[_maProdcucts release]; // here crash in this line EXC_BAD_ACCESSE
}
出了什么问题?