0
#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;
}
當我啓動應用程序時,它會發生泄漏。需要幫助查找此代碼中的泄漏請
你確定它是你的堆棧的頂部?它是標準的主要功能內容,它不能成爲問題的來源 – Vladimir 2010-02-04 15:43:25