美文网首页
UILabel加载图片文字HTML

UILabel加载图片文字HTML

作者: 姚姚先生 | 来源:发表于2019-01-25 18:37 被阅读9次

加载文字没问题

NSAttributedString * attrStr = [[NSAttributedString alloc] initWithData:[newHtmlString dataUsingEncoding:NSUnicodeStringEncoding] options:@{ NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType, NSCharacterEncodingDocumentAttribute :@(NSUTF8StringEncoding) } documentAttributes:nil error:nil];
    self.contentLabel.attributedText = attrStr;

加载图片会超出边界
加上下面代码可以解决

NSString *newHtmlString= [NSString stringWithFormat:@"<head><style>img{width:%f !important;height:auto}</style></head>%@",KScreenWidth,htmlString];

相关文章

网友评论

      本文标题:UILabel加载图片文字HTML

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