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

iOS系列教程之TextKit实现图文混排读后记

时间:2015-06-15 18:37:55      阅读:398      评论:0      收藏:0      [点我收藏+]

标签:

iOS系列教程之TextKit实现图文混排读后记

前两天看搜狐家明哥写的《TextKit实现图文混排》 今晚回家看了下API发现了一个更加取巧的实现方式.可以直接将后台返回的html富文本用textView显示出来. 记得两年前当时做这个的时候还是借助了笨重的webview.

> Textkit是iOS7新推出的类库,其实是在之前推出的CoreText上的封装,有了这个TextKit,以后不用再拿着CoreText来做累活了, 下面是我分别用UITextView 和UIWebView 显示一段图文混合的文字

技术分享
- (id)initWithFileURL:(NSURL *)url options:(NSDictionary *)options documentAttributes:(NSDictionary **)dict error:(NSError **)error

Initializes a new attributed string object from the data at the given URL. The HTML importer should not be called from a background thread (that is, the options dictionary includes NSDocumentTypeDocumentAttribute with a value of NSHTMLTextDocumentType). It will try to synchronize with the main thread, fail, and time out. Calling it from the main thread works (but can still time out if the HTML contains references to external resources, which should be avoided at all costs). The HTML import mechanism is meant for implementing something like markdown (that is, text styles, colors, and so on), not for general HTML import.


<meta charset="UTF-8">
<div style="background-color:lightgrey;
    font-size:14px;
    color:#304182;
  text-align:center; 
  margin-left:5px;
  padding-right:5px">
	<p>Hi
		<span style="font-size:18px; color:#E88834;">
			Taobao
		</span>
        
		<img src="hufeng.png" height="32" width="32" />
        <p> 静态图片
		<img src="taobao.gif" height="32" width="52">
        <p> 动态图片
	</p>
	 
</div>
  • 需要注意的是第一行需要指明编码格式 否则的话 中文会显示乱码
  • gif图片textView会自动转换成静态图片进行显示

如下图是去掉meta charset="UTF-8"的显示效果

技术分享
- (void)loadHtmlToWebView
{
    NSURL *url = [[NSBundle mainBundle] URLForResource:@"text" withExtension:@"html"];
    [_webView loadRequest:[NSURLRequest requestWithURL:url]];
}
- (void)loadHtmlToTextView
{
    
    // Create attributed string from HTML
    NSURL *url = [[NSBundle mainBundle] URLForResource:@"text" withExtension:@"html"];
    NSAttributedString *attrStr = [[NSAttributedString alloc]
                                   initWithFileURL:url
                                   options:@{NSDocumentTypeDocumentAttribute:NSHTMLTextDocumentType}
                                   documentAttributes:nil error:nil];
    [_textView setAttributedText:attrStr];

}

演示代码下载 http://vdisk.weibo.com/s/aOcPgYpXA04g2


W 本站文章如果没有特殊说明,均为原创,转载请以链接方式注明本文地址:http://hufeng825.github.com/2014/01/21/ios37/

iOS系列教程之TextKit实现图文混排读后记

标签:

原文地址:http://www.cnblogs.com/positiveenergy/p/4578765.html

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