例如
韩国共同民主党党首李海瓒、<b><font color='red'>民主</font></b>和平党党首郑东泳和正义党代表李政美(音)三人原定将于当地时间下午3点30分(北京时间2点30分)在平壤万寿台礼堂同朝鲜方面代表会面。
我们从后台获取了一段字符串 其中<b><font color='red'>民主</font></b>
是HTML标签格式
我们需要转换成富文本
- 如下
NSData *data = [self.viewModel.docment.content dataUsingEncoding:NSUnicodeStringEncoding];
NSDictionary *options = @{NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType};
NSAttributedString *html = [[NSAttributedString alloc]initWithData:data
options:options
documentAttributes:nil
error:nil];
self.yyTitle.attributedText = html;
网友评论