码迷,mamicode.com
首页 > Web开发 > 详细

UIWebView获得内容的高-作出自适应高的UIWebView

时间:2015-04-13 19:02:07      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:ios   ios开发   uiwebview   

- (void)webViewDidFinishLoad:(UIWebView *)webView
{    
NSString *height_str= [webView stringByEvaluatingJavaScriptFromString: @"document.body.offsetHeight"];
    int height = [height_str intValue];
    webView.frame = CGRectMake(0,0,320,height);
    NSLog(@"height: %@", [webView stringByEvaluatingJavaScriptFromString: @"document.body.offsetHeight"]);
}

UIWebView获得内容的高-作出自适应高的UIWebView

标签:ios   ios开发   uiwebview   

原文地址:http://blog.csdn.net/yangchen9931/article/details/45029025

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!