请帮助找到此代码中的泄漏

时间:2010-02-04 15:37:34

标签: iphone objective-c xcode memory-leaks

#import <UIKit/UIKit.h>

int main(int argc, char *argv[]) {

    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
    int retVal = UIApplicationMain(argc, argv, nil, nil);<-----This line gets highlighted as the leak
    [pool release];
    return retVal; 
}

当我启动应用程序时,它会泄漏。

1 个答案:

答案 0 :(得分:0)

泄漏不存在,而是在应用程序委托之前NSApplication调用的内容。最有可能是在添加的库或框架中。 IIRC,笔尖中的循环引用也可能导致这种情况。查看您的MainWindow笔尖。