iOS开发解析富文本

在开发中经常有后台返回的富文本字符串需要iOS开发者解析,很多同学第一想到的是webview,但是webview的性能不好而且并不利于适配。有更简单的方法就是直接将富文本字符解析成iOS中的富文本,然后将富文本显示在UILabel上,这样内存消耗比较低,并且非常有利于屏幕的适配


OC:

NSAttributedString * attrStr = [[NSAttributedString alloc] initWithData:[htmlString dataUsingEncoding:NSUnicodeStringEncoding] options:@{ NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType } documentAttributes:nil error:nil];

label.attributedText = attrStr;

Swift:

let attribstr = try! NSAttributedString.init(data:(htmlString?.data(using: String.Encoding.unicode))! , options: [NSDocumentTypeDocumentAttribute:NSHTMLTextDocumentType], documentAttributes: nil)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值