Hi,
I have the following code:
UIImage *originalImage;
CGImageRef cgImage = [originalImage CGImage];
I know that CGImage is a read-only property of UIImage class. Does the line
CGImageRelease(cgImage)
free originalImage's memory?
I'm tracing down a bug in my program and this line seems to be a hot candidate if I'm trying to access originalImage later.
Thanks, Stefan