在我计划做的ipad应用程序中,它将完全是关于在UIWebView中加载网页。 我有一个功能,其中我将显示UIWebViews的预览,更像是这些网页的缩略图。我该怎么做呢?从这些网页生成UIImage会很酷...... 希望有人能帮助我实现这一目标。
答案 0 :(得分:6)
UIGraphicsBeginImageContext(yourWebView.bounds.size);
[yourWebView.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *resultImageView = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
这resultImageView
将是您的答案......