在我的应用程序中,我将UIWebView中加载的内容转换为UIImage,并在UIImageView中显示它。
现在我要做的是从URL中加载隐藏的webview加载内容,然后将其内容转换为UIImage。
任何人都可以建议一种方法吗?
答案 0 :(得分:1)
#import <QuartzCore/QuartzCore.h>
UIGraphicsBeginImageContext(yourWebView.bounds.size);
[yourWebView.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();