加載文字沒問題
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];