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
To get the whole HTML raw data (with and ):
NSString *html = [webView stringByEvaluatingJavaScriptFromString:@"document.documentElement.outerHTML"];