Из примерно 2 тыс. Строк кода у Static Analyzer есть только одна проблема:
spellDetailModalViewController *detailVC = [[spellDetailModalViewController alloc]init];
UIImage *tempImage = self.spellImageView.image;
CGRect newSize = CGRectMake(0.0, 0.0, 320.0, 305.0);
CGImageRef temp = CGImageCreateWithImageInRect([tempImage CGImage], newSize);
UIImage *passingImage = [UIImage imageWithCGImage:temp];
temp=nil;
Жалуется, что CGImageRef 'temp' является "потенциально" утечкой и имеет счет сохранения.+1.Я установил его на ноль после того, как изображение было передано модальному ViewController.Очевидно, что в ARC я не могу назвать [temp release] в ARC.Не уверен, что делать.Помощь очень ценится.