美文网首页
将HTML格式的富文本转成可显示到UILabel上的NSAttr

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

作者: 流沙3333 | 来源:发表于2017-03-01 17:37 被阅读162次

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

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

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

    }

    相关文章

      网友评论

          本文标题:将HTML格式的富文本转成可显示到UILabel上的NSAttr

          本文链接:https://www.haomeiwen.com/subject/stlcgttx.html