I\'m having trouble with UIImage memory management. (iphone) my app gets memory warning when instruments shows "all allocations" only 7mb?
Essentially,
CGImage doesn't fluctuate more than I think(max 6+).. umm maybe 6+ = 6mg and baseline 10mg = 16Mg triggered the warning
CGImages are not autoreleased, you should call CGImageRelease(image);
CGImageRelease(image);