webViewcell中调整高度

- (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];

}

时间: 2024-10-21 10:44:22

webViewcell中调整高度的相关文章

CSS中的高度和宽度

1.简单的说,常规流向的块级元素,width为auto时,会尽量充满父元素的内容宽度,而height为auto时,则是由其内部的不浮动的子元素的高度决定(无浮动,绝对定位). 2.width:100%;width:auto <div>    <p>1</p></div><style type="text/css">div{ width:600px; overflow:auto;}p{ width:100%;      padd

javascript中各类高度和宽度的整理

基础学的不扎实,关于高度宽度的各个属性总是糊里糊涂的,在这里理一下思路. 下面的测试以以下html结构为例 <div id="div1" style="height:200px;width:200px;padding:20px;margin:10px;border:1px solid #000;overflow:scroll"> <div id="div2" style="height:1000px;width:100

iOS7中Cell高度 Label高度自适应

? 1 2 3 4 5 6 7 8 9 10 11 12 ?- (float)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{     NSString *str = [_dataArray objectAtIndex:indexPath.row];     UIFont *tfont = [UIFont systemFontOfSize:14.0];     NSDictio

ScrollView 中ListView 高度不能正常显示(转)

解决办法如下: public void setListViewHeightBasedOnChildren(ListView listView) { // 获取ListView对应的Adapter ListAdapter listAdapter = listView.getAdapter(); if (listAdapter == null) { return; } int totalHeight = 0; for (int i = 0, len = listAdapter.getCount();

CSS - Select 标签在不同浏览器中的高度设置

当使用Select标签时,在不同浏览器中显示的高度不同,如何解决此问题: 解决方法链接:http://stackoverflow.com/questions/20477823/select-html-element-with-height Demo:http://jsfiddle.net/64px3yg5/1/ HTML: <select> <option>Here's one option</option> <option>here's another o

如何在word中调整公式大小

在Word文档中某一行使用“Mathtype公式编辑器”输入数学公式后,往往公式所在行的行距明显变大,就好像公式把这一行和其它行给撑开了一样,非常不美观,使用改变行距的命令也不能解决问题.公式是以图片形式插入word文档的,可以使用缩放图片的形式来调整公式的大小.以下步骤教您如何在word中调整公式大小: 第一步 在文档中需要插入公式的地方用Mathtype公式编辑器插入需要的公式,可以参考下图 在文档中插入所需要的公式 第二步 文档中公式与文字相差太大,看起来很不协调,这时我们可以用鼠标点击插

如何在公式编辑器中调整字母间距

作为强大的公式编辑器,MathType可以帮助在文献中编辑公式,但是有时公式编辑器默认的格式与我们与需要的格式并不是很一致,这时就需要我们对MathType的格式做出一些调整,比如字母中的间距问题,怎样才能快速调整呢? MathType软件开学特惠活动进行中,软件获取地址:http://wm.makeding.com/iclk/?zoneid=17790 具体操作步骤如下: 1.打开MathType公式编辑器编辑公式. 2.选中需要调整间距的字母,在"空格和椭圆"模板中选择相应的需要点

Linux 中调整字符集

如何在 Linux 中调整字符集 首先通过su命令切换到 root 用户检查目前的字符集是什么,通过 echo $LANG 来实现当然,还可以通过 cat 命令来检查 系统的文件:/etc/sysconfig/i18n注意:centos7 上面没有这个文件,后来一分析,原来是7版本把 LANG 放到了这个文件中:/etc/locale.conf当然,在修改配置文件时,要养成良好的习惯,那就是备份.通过 cp 命令进行备份:cp /etc/locale.conf /etc/locale.conf.

iOS7.0中UILabel高度调整注意事项

转自:http://blog.csdn.net/k12104/article/details/33731833 http://herkuang.info/blog/2013/12/31/ios7%E4%B8%ADuilabel%E9%AB%98%E5%BA%A6%E8%B0%83%E6%95%B4%E6%B3%A8%E6%84%8F%E4%BA%8B%E9%A1%B9/ 我的“记词助手”在升级到iOS7之后,一直出现UILabel错位的问题: 我的label是用- (CGSize)sizeWit