views:

22

answers:

1

I just don;t know how to do this. I want more flexibility to edit the image

+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