3

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

4

1 回答 1

2

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

于 2010-05-17T13:52:56.603 回答