UILabel 显示 html

目前项目中遇到需要把带有html标签的文本显示出来,之前用的是UILabel控件 所有直接使用

  NSAttributedString * attrStr = [[NSAttributedString alloc] initWithData:[contentString  dataUsingEncoding:NSUnicodeStringEncoding] options:@{NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType,NSFontAttributeName:[UIFont systemFontOfSize:25.0f] } documentAttributes:nil error:nil];
_contentLabel.attributedText = attrStr;//用于显示

注:发现已经设置了字体大小但是还是不能改变,就把之前创建label时候设置的字体大小放在此行代码下面就改变大小了。

转载http://blog.csdn.net/pyf_1993/article/details/52153876

你可能感兴趣的:(UILabel 显示 html)