每当我试图更新<条码>倡议指标时 透镜条码>通过投掷一个例外情况而坠毁。
modifying layer that is being finalized - 0x7e177fd0 -[CALayer removeAnimationForKey:]: message sent to deallocated instance 0x7e177fd0
当我试图跟踪记忆泄露成为小孔径流的工具时,这一坠毁事件在10人中始终没有发生。
请让我从这个记忆问题中解脱。
即将实施:
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc]init];
[autoRechargeCell addSubview:activityIndicator];
[self.activityIndicator startAnimating];
if( [PennyTalkAPI getBalanceInfoForAccount:appDelegate.accountNumber withPIN:appDelegate.pinNumber])
{
[autoRechargeCell.switchField setOn:[[NSUserDefaults standardUserDefaults] boolForKey:@"AutoRecharge"]];
[self.activityIndicator stopAnimating]; <<<<<<<<<<<<<<<<<<<<<<
}
else
{
[self.activityIndicator stopAnimating];
}
[pool release];
这是我撰写的法典。