美文网首页
UILabel显示HTML字符串

UILabel显示HTML字符串

作者: Fisher123 | 来源:发表于2017-12-29 22:49 被阅读15次

    str是要显示的HTML字符串,UILabel支持显示HTML显示

    NSString *str = [timetable.content copy]; 
    if(str.length>0){
        NSMutableAttributedString *attrString =
        [[NSMutableAttributedString alloc] initWithData:[str
        dataUsingEncoding:NSUnicodeStringEncoding]
        options:@{NSDocumentTypeDocumentAttribute:
        NSHTMLTextDocumentType} documentAttributes:nil error:nil];
      [attrString addAttribute:NSFontAttributeName value:[UIFont
        systemFontOfSize:16] range:NSMakeRange(0, attrString.length)];
      self.contentLabel.attributedText = attrString;
    }
    
    

    相关文章

      网友评论

          本文标题:UILabel显示HTML字符串

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