UILabel可以显示html文本_html/css_WEB-ITnose
程序员文章站
2022-05-23 20:26:36
...
NSString * htmlString = @" Some html string \n This is some text! ”;
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];
推荐阅读
-
iOS---TextView显示HTML文本
-
html如何显示有换行的文本?
-
对angularJs中$sce服务安全显示html文本的实例
-
html文本框默认值刷新后无法继续显示解决方法
-
HTML 文件及文本上传至数据库时,文本显示为null
-
前端html中jQuery实现对文本的搜索功能并把搜索相关内容显示出来
-
HTML横向滚动条和文本超出显示三个小圆点
-
ajax读取txt文本中的json并显示在html页面表格上
-
TextView采用setText赋值之后不能立即显示在页面上的问题解决_html/css_WEB-ITnose
-
jquery 截取datatable里面td内容太多的显示省略号,点击行时候,行高度变高,显示全部内容_html/css_WEB-ITnose