首页 > 代码库 > iOS 富文本类库RTLabel
iOS 富文本类库RTLabel
本文转载至 http://blog.csdn.net/duxinfeng2010/article/details/9004749
本节关于RTLable基本介绍,原文来自 https://github.com/honcheng/RTLabel
RTLabel
基于富文本的格式,适用于iOS,类似HTML的标记。
RTLabel 基于UILabel类的拓展,能够支持Html标记的富文本显示,它是基于Core Text,因此也支持Core Text上的一些东西。
特点
- 粗体和斜体
- 颜色和大小
- 下划线
- 缩进
- 字距
- 行距
- 超链接
用法
1)将RTLabel.h 和 RTLabel.m 拖拽道你的工程中,导入Core Text.framework。添加头文件
[cpp] view plaincopy
- #import "RTLabel.h"
2)创建一个RTLabel
[cpp] view plaincopy
- NSString *sample_text = @"<b>bold</b>,<i>italic</i> and <u>underlined</u> text, and <font face=‘HelveticaNeue-CondensedBold‘ size=20 color=‘#CCFF00‘>text with custom font and color</font>";
- RTLabel *label = [[RTLabel alloc] initWithFrame:...];
- [self addSubview:label];
- [label setText:sample_text];
3)支持以下标签
[html] view plaincopy
- <b>Bold</b>
- <i>Italic</i>
- <bi>Bold & Italic</bi>
- <u>underline</u>, <u color=red>underline with color</u>
- <a href=http://www.mamicode.com/‘http://..‘>link</a>
- <uu>double underline</uu> , <uu color=‘#ccff00‘>double underline with color</uu>
- <font face=‘HelveticaNeue-CondensedBold‘ size=20 color=‘#CCFF00‘>custom font</font>
- <font face=‘HelveticaNeue-CondensedBold‘ size=20 color=‘#CCFF00‘ stroke=1>custom font with strokes</font>
- <font face=‘HelveticaNeue-CondensedBold‘ size=20 color=‘#CCFF00‘ kern=35>custom font with kerning</font>
- <p align=justify>alignment</p>
- <p indent=20>indentation</p>
最低要求
- ARC -RTLabel使用了ARC,如果你的工程没有使用ARC,在编译时 compiler flag 上 添加 ‘-fobjc-arc‘(如下图显示)
- XCode 4.4 或以上新版本。
原创博客欢迎转载分享,请注明出处http://blog.csdn.net/duxinfeng2010
iOS 富文本类库RTLabel
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。