本节关于RTLable基本介绍,原文来自

RTLabel

基于富文本的格式,适用于iOS,类似HTML的标记。
20130601172712820
RTLabel 基于UILabel类的拓展,能够支持Html标记的富文本显示,它是基于Core Text,因此也支持Core Text上的一些东西。

特点

  • 粗体和斜体

  • 颜色和大小

  • 下划线

  • 缩进

  • 字距

  • 行距

  • 超链接

用法

1)将RTLabel.h 和 RTLabel.m 拖拽道你的工程中,导入Core Text.framework。添加头文件
#import "RTLabel.h"
2)创建一个RTLabel
NSString *sample_text = @"bold,italic and underlined text, and text with custom font and color";RTLabel *label = [[RTLabel alloc] initWithFrame:...];[self addSubview:label];[label setText:sample_text];
3)支持以下标签
BoldItalic
Bold & Italic
underline, underline with colorlink
double underline
,
double underline with color
custom fontcustom font with strokescustom font with kerning

alignment

indentation

最低要求

  • ARC -RTLabel使用了ARC,如果你的工程没有使用ARC,在编译时 compiler flag 上 添加 '-fobjc-arc'(如下图显示)

  • XCode 4.4 或以上新版本。

20130601180121340