每当我尝试UIActivityIndicatorView
从线程更新时,应用程序都会因抛出异常而崩溃
正在完成的修改层 - 0x7e177fd0 -[CALayer removeAnimationForKey:]:消息发送到已释放实例 0x7e177fd0
当我尝试从 mallocDebugger 工具跟踪内存泄漏时,这种崩溃并没有发生
请帮我解决这个内存问题
线程实现:
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];
这是我写的代码。