首页 > 代码库 > ioS html的转义

ioS html的转义

   NSString *htmlString = @"<font color=\"#6c6c6c\">快乐每一天,还剩<font color=\"#ff9147\">365天";
    NSAttributedString *attributedString = [[NSAttributedString alloc] initWithData:[htmlString dataUsingEncoding:NSUTF8StringEncoding] options:@{NSDocumentTypeDocumentAttribute:NSHTMLTextDocumentType,NSCharacterEncodingDocumentAttribute:@(NSUTF8StringEncoding)} documentAttributes:nil error:nil];

遇到html字符串的话,需要展示的话,有时候需要转义,用上面的方法可以展示,如果格式不是标准的格式不行,必须转化成标准的格式才能显示,


本文出自 “雪花飞落满人间” 博客,请务必保留此出处http://smengxiang.blog.51cto.com/11204872/1871972

ioS html的转义