我正在使用最新的 Xcode,并试图找到内存泄漏。当我使用“分析”时,它显示以下潜在泄漏:
+ (UITableViewCell *) method {
UITableViewCell *cell = [[TestX alloc]init];
... do some stuff
return [cell autorelease];
}
我应该忽略它吗?
我正在使用最新的 Xcode,并试图找到内存泄漏。当我使用“分析”时,它显示以下潜在泄漏:
+ (UITableViewCell *) method {
UITableViewCell *cell = [[TestX alloc]init];
... do some stuff
return [cell autorelease];
}
我应该忽略它吗?