Out of some 2k lines of code, the Static Analyser has only one problem, thus:
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;
It is complaining that CGImageRef 'temp' is 'potentially' being leaked, and has a retain count of +1. I set it to nil after the image has been passed to the modal ViewController. Obviously, under ARC, I can't call [temp release] under ARC. Not sure what to do. Help greatly appreciated.
You need to
CGImageRelease
temp
From the
CGImageCreateWithImageInRect
Apple docs:The resulting image retains a reference to the original image, which means you may release the original image after calling this function.