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

webViewcell中调整高度

时间:2014-11-04 12:31:23      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:io   ar   java   for   sp   on   cti   bs   ad   

- (void)webViewDidFinishLoad:(UIWebView *)webView {

    

    for (UIScrollView *view in webView.subviews) {

        

        // int miHeight;

        

        if ([view isKindOfClass:[UIScrollView class]]) {

            

            NSString *str = [webView stringByEvaluatingJavaScriptFromString:@"document.body.scrollHeight;"];

            

            int iHeight = [str intValue];

            

            if (iHeight<10) {

                

                iHeight = 10;

                

            }

            webHeight = iHeight;

            webView.frame = CGRectMake(0, 166, 320, webHeight+166);

            

//            NSDictionary *dic = [[NSDictionary alloc] initWithObjectsAndKeys: nil];

//            

//            [dic setValue:[NSString stringWithFormat:@"%d",iHeight] forKey:[NSString stringWithFormat:@"%d",webView.tag]];

            

            [self OnLoadFinish:(WebViewCell *)webView.superview.superview];

            

        }

        

    }

    

    

    

}

 

 

 

 

 

- (void)OnLoadFinish:(WebViewCell *)sender {

    

    [m_tableview beginUpdates];

    

    

    //..........

    

    

    [m_tableview endUpdates];

    

}

 

webViewcell中调整高度

标签:io   ar   java   for   sp   on   cti   bs   ad   

原文地址:http://www.cnblogs.com/keyan1102/p/4073001.html

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