UILabel用原生方法显示HTML文本
来源:程序员人生 发布时间:2015-05-22 08:43:25 阅读次数:3674次
NSString * htmlString = @"<html><body>今天中午<font size="13" color="red">去哪吃甚么</font><font size="5" color="blue">???</font> </body></html>";
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];
生活不易,码农辛苦
如果您觉得本网站对您的学习有所帮助,可以手机扫描二维码进行捐赠