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
In Swift v3:
let doc = webView.stringByEvaluatingJavaScript(from: "document.documentElement.outerHTML")