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];
2.加载html数据,图文结合的那种。
我在demo里用text文本加载了html数据标签,但是图片没显示出来,我自己的项目用数据源加载时没问题,如果你们用的话,可以用自己的数据源来试试看。
github地址:https://github.com/shmily1119/WebviewAdaptionCell