美文网首页
iOS中的UIlabel在html中显示文字

iOS中的UIlabel在html中显示文字

作者: 赵永洪 | 来源:发表于2015-12-31 20:02 被阅读2049次

例:

NSString * htmlString = @" html的文字 \n这里填写内容";

NSAttributedString * attrStr = [[NSAttributedString alloc] initWithData:[htmlString dataUsingEncoding:NSUnicodeStringEncoding] options:@{ NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType } documentAttributes:nil error:nil];

UILabel * myLabel = [[UILabel alloc] initWithFrame:self.view.bounds];

myLabel.attributedText = attrStr;

[self.view addSubview:myLabel];

相关文章

网友评论

      本文标题:iOS中的UIlabel在html中显示文字

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