iOS UITextView UILabel 显示 HTML内容

iOS6 之后的UITextView和UILabel 有attributedText 属性,可以设置字符串显示的多样化显示。

``
NSString *htmlString = @"

Header

Subheader

Some text

";
NSAttributedString *attributedString = [[NSAttributedString alloc] initWithData:[htmlString dataUsingEncoding:NSUnicodeStringEncoding] options:@{ NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType } documentAttributes:nil error:nil];
textView.attributedText = attributedString;

``

你可能感兴趣的:(iOS UITextView UILabel 显示 HTML内容)