In the ipad app im planning to do, it will be all about loading web pages in UIWebView. I have a feature wherein I will display previews of the UIWebViews, more like thumbna
UIGraphicsBeginImageContext(yourWebView.bounds.size); [yourWebView.layer renderInContext:UIGraphicsGetCurrentContext()]; UIImage *resultImageView = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext();
this resultImageView will be your answer...
resultImageView