當我分析一下我的iPhone應用程序我有一個藍色箭頭警告它說:iPhone開發:當我分析我的應用我有潛在的泄漏問題
potential leak of an object stored into pauseImgBg
我只是從一本地圖冊裁切部分圖像,並把它進入pauseMenuIV
imageView
。
CGImageRef pauseImgBg = CGImageCreateWithImageInRect([UIImage imageNamed:@"atlas.png"].CGImage, CGRectMake(1, 1, 640.0f, 960.0f));
pauseMenu = [UIImage imageWithData:UIImagePNGRepresentation([UIImage imageWithCGImage:pauseImgBg])];// I have the blue arrow in this line
[pauseMenuIV setImage:pauseMenu];
可能是什麼問題?
謝謝。
釋放它甚至即時通訊使用ARC還需要手動釋放呢? @AppleDelegate –