2

我想使用代码计算单元格高度。我的文本包含 html 实体等<br>,<b>。我尝试了以下或类似的代码 -

//create a CGFloat variable
CGFloat _height = 0;
//find out the size for your text. Instead of 255 insert the width of your label
CGSize _textSize = [yourString sizeWithFont:[UIFont systemFontOfSize:kFontSize] constrainedToSize:(CGSize) { 255, 9999 }];
//add the height of that CGSize variable to your height in case you will need to add more values
_height += _textSize.height;

它适用于单行代码和纯文本,但包含 html 标签的文本存在问题。

请帮忙。

4

1 回答 1

1

试试这个与细胞高度相关的教程,试着用谷歌搜索这个 http://www.cimgf.com/2009/09/23/uitableviewcell-dynamic-height/

于 2012-04-26T06:10:42.593 回答