iOS中的UIlabel在html中显示文字

2015-12-31  本文已影响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];

上一篇下一篇

猜你喜欢

热点阅读