我正在使用LLVM / Clang静态分析器分析Objective-C iPhone项目。我一直收到两个报告错误,但我很确定代码是正确的。
1)便利方法。
+ (UILabel *)simpleLabel
{
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(100, 10, 200, 25)];
label.adjustsFontSizeToFitWidth = YES;
[label autorelease]; // Object with +0 retain counts returned to caller where a +1 (owning) retain count is expected.
return label;
}
2)[NSClassFromString(...)alloc]返回retainCount + 1.我是对的吗?
Class detailsViewControllerClass =
NSClassFromString(self.detailsViewControllerName);
UIViewController *detailsViewController =
[[detailsViewControllerClass alloc]
performSelector:@selector(initWithAdditive:) withObject:additive];
[self.parentController.navigationController
pushViewController:detailsViewController animated:YES];
[detailsViewController release]; // Incorrect decrement of the reference count of an object is not owned...
这些是Clang问题还是我在这两种情况下都完全错了?
答案 0 :(得分:2)
在这两种情况下,您的代码都是正确的。没有。 2,你可能会使用performSelector
而不是普通的initWithAdditive
来混淆分析器(你有没有特别的原因使用选择器?)。我不确定没有。 1,但也许尝试使用[[[UILabel alloc] init...] autorelease]
初始化它而不是单独自动释放,并查看问题是否仍然存在。