基于类似 HTML 标记的富文本格式化用于 iOS。
RTLabel 与 UILabel 的功能类似,但支持类似 HTML 的标记进行富文本显示。它基于 Core Text,因此支持 Core Text 的一些功能。
1) 将 RTLabel.h 和 RTLabel.m 拖入您的项目。导入 CoreText 框架
#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>