码迷,mamicode.com
首页 > 移动开发 > 详细

iOS UITextView 展示html

时间:2015-01-13 11:56:45      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:

NSString *htmlString = @"<h1>Header</h1><h2>Subheader</h2><p>Some <em>text</em></p><img src=‘http://blogs.babble.com/famecrawler/files/2010/11/mickey_mouse-1097.jpg‘ width=70 height=100 />";
    NSAttributedString *attributedString = [[NSAttributedString alloc] initWithData:[htmlString dataUsingEncoding:NSUnicodeStringEncoding] options:@{ NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType } documentAttributes:nil error:nil];
textView.attributedText = attributedString;

 

iOS UITextView 展示html

标签:

原文地址:http://www.cnblogs.com/lihaibo-Leao/p/4220580.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!