美文网首页
iOS HTML文本标签转换成富文本

iOS HTML文本标签转换成富文本

作者: 错肩期盼 | 来源:发表于2018-10-16 15:44 被阅读14次

    例如

    韩国共同民主党党首李海瓒、<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;
    
    效果如下
    WX20181016-154304.png

    相关文章

      网友评论

          本文标题:iOS HTML文本标签转换成富文本

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