码迷,mamicode.com
首页 > Web开发 > 详细

UILabel用原生方法显示HTML文本

时间:2015-04-30 10:37:40      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:ios   objectivec   uilabel   html   nsstring   

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];


UILabel用原生方法显示HTML文本

标签:ios   objectivec   uilabel   html   nsstring   

原文地址:http://blog.csdn.net/xiaopeng12300/article/details/45391199

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!