将HTML格式的富文本转成可显示到UILabel上的NSAttributedString富文本

//将HTML格式的富文本转成可以显示到UILabel上的NSAttributedString富文本显示

+ (NSAttributedString*)getAttributedStringFromHtmlString:(NSString*)htmlString{

return  [[NSAttributedStringalloc]initWithData:[htmlStringdataUsingEncoding:NSUnicodeStringEncoding]options:@{NSDocumentTypeDocumentAttribute:NSHTMLTextDocumentType}documentAttributes:nilerror:nil];

}

你可能感兴趣的:(将HTML格式的富文本转成可显示到UILabel上的NSAttributedString富文本)