Last active
August 29, 2015 13:57
-
-
Save hachinobu/9594135 to your computer and use it in GitHub Desktop.
UIWebViewで表示しているHTMLのソースコード取得
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//全文 | |
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