我是一個初學者,我發現這個警告上運行Xcode的「分析」後,這裏的對象的潛在泄漏「:Xcode中分析說:
IphoneFeatureImageDetailViewController *img = [[IphoneFeatureImageDetailViewController alloc] initWithNibName:@"IphoneFeatureImageDetailViewController" bundle:nil];
img.imagesArray = [heroArray copy];
img.index = imgButton.tag; // AT THIS LINE IT SAYS POTENTIAL MEMORY LEAK
[self.navigationController pushViewController:img animated:YES];
[img release];
請點我在正確的方向!
什麼是imgButton.tag? – Pablosproject
在我看來,你可以忽略這一點,因爲你只是將一個整數值(img上的索引)賦值給另一個「整數」值(我猜是'NSButton'的'tag')。 – tamasgal
imgButton是從方法簽名 - (無效)imgDetail:(UIButton *)imgButton – shaikh