I just don;t know how to do this. I want more flexibility to edit the image
views:
22answers:
1
+2
A:
UIImage instances have CGImage
(read-only) property that allow access to CGImageRef image data.
To create new UIImage from CGImageRef you can use convinience contructor:
+ (UIImage *)imageWithCGImage:(CGImageRef)cgImage
Vladimir
2010-02-04 15:30:33