2010-09-23 5 views

Antwort

12

wie diese (aus dem Speicher eingegeben, so dass es möglicherweise nicht zu 100% korrekt sein):

// Get a UIImage from the view's contents 
UIGraphicsBeginImageContextWithOptions(view.bounds.size, view.opaque, view.contentScaleFactor); 
CGContextRef context = UIGraphicsGetCurrentContext(); 
[view.layer renderInContext:context]; 
UIImage *image = UIGraphicsGetImageFromCurrentImageContext(); 
UIGraphicsEndImageContext(); 

// Convert UIImage to CGImage 
CGImageRef cgImage = image.CGImage; 
1

auch sicher, dass Sie

#import <QuartzCore/QuartzCore.h>

, um Ihren Code

+0

hinzu: P lol wirklich? Haa –