Is it possible to read the raw HTML content of a web page that has been loaded into a UIWebView?
UIWebView
If not, is there another way to pull raw HTML content f
if you want to extract the contents of an already-loaded UIWebView, -stringByEvaluatingJavaScriptFromString. For example:
NSString *html = [webView stringByEvaluatingJavaScriptFromString: @"document.body.innerHTML"];