UIWebview中的文本格式问题?

时间:2011-05-13 07:16:00

标签: iphone html uitableview uiwebview

我有webview放置在自定义表格视图单元格中,因为要将动态数据加载到此webview,某些文本会根据当前{{1}被截断} frame。

所以我问是否有任何方法可以动态设置webview的大小,以便只查看前两行webview内容。

提前致谢。

1 个答案:

答案 0 :(得分:1)

以下是带有代码示例的非常好的文章,请检查他们如何处理您面临的同一问题。

Fast UITableViewCell with a UIWebView

实施heightForRowAtIndexPath UITableViewDelegate menthod,获取两行文字。

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath

尝试使用以下内容获取一行的高度。

float lineHeight = [myText sizeWithFont:myTextFont ].height; // Calculate the height of one line.

将其乘以2并将其指定为行高..:)