webview在cell中自适应高度

1.加载HTML标签的,纯文字的,加上这段代码就可以搞定了。

cell.textLabel.numberOfLines= 0;

NSAttributedString*attrStr = [[NSAttributedStringalloc]initWithData:[htmlTxtStrdataUsingEncoding:NSUnicodeStringEncoding]options:@{NSDocumentTypeDocumentAttribute:NSHTMLTextDocumentType}documentAttributes:nilerror:nil];

cell.textLabel.attributedText= attrStr;

cell.textLabel.font= [UIFontsystemFontOfSize:15.0f];



webview在cell中自适应高度_第1张图片
html标签数据


webview在cell中自适应高度_第2张图片
html标签效果图


2.加载html数据,图文结合的那种。

我在demo里用text文本加载了html数据标签,但是图片没显示出来,我自己的项目用数据源加载时没问题,如果你们用的话,可以用自己的数据源来试试看。


webview在cell中自适应高度_第3张图片
html数据图文结合效果图


github地址:https://github.com/shmily1119/WebviewAdaptionCell

https://github.com/shmily1119/WebviewAdaptionCell

你可能感兴趣的:(webview在cell中自适应高度)