在便捷方法和NSClassFromString(...)alloc / release中找到LLVM / Clang错误

时间:2010-05-17 12:51:41

标签: iphone objective-c clang-static-analyzer

我正在使用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问题还是我在这两种情况下都完全错了?

1 个答案:

答案 0 :(得分:2)

在这两种情况下,您的代码都是正确的。没有。 2,你可能会使用performSelector而不是普通的initWithAdditive来混淆分析器(你有没有特别的原因使用选择器?)。我不确定没有。 1,但也许尝试使用[[[UILabel alloc] init...] autorelease]初始化它而不是单独自动释放,并查看问题是否仍然存在。