Skip to content

Instantly share code, notes, and snippets.

@hachinobu
Last active August 29, 2015 13:57
Show Gist options
  • Save hachinobu/9594135 to your computer and use it in GitHub Desktop.
Save hachinobu/9594135 to your computer and use it in GitHub Desktop.
UIWebViewで表示しているHTMLのソースコード取得
//全文
NSString* html = [webView stringByEvaluatingJavaScriptFromString:@"document.getElementsByTagName('html')[0].outerHTML"];
//bodyタグ内
NSString* html = [webView stringByEvaluatingJavaScriptFromString:@"document.body.innerHTML"];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment