iOS 富文本类库RTLabel
本节关于RTLable基本介绍,原文来自 https://github.com/honcheng/RTLabel
RTLabel
特点
- 粗体和斜体
- 颜色和大小
- 下划线
- 缩进
- 字距
- 行距
- 超链接
用法
- #import "RTLabel.h"
2)创建一个RTLabel
- 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)支持以下标签
- <b>Bold</b>
- <i>Italic</i>
- <bi>Bold & Italic</bi>
- <u>underline</u>, <u color=red>underline with color</u>
- <a href=‘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 或以上新版本。
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。