RTLabel 1.0.1

RTLabel 1.0.1

测试已测试
Lang语言 Obj-CObjective C
许可 MIT
发布上次发布2015年7月

Elijah Dou 维护。



RTLabel 1.0.1

  • 作者:
  • elijah dou

基于类似 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>

最低要求

  • ARC - 此项目使用 ARC。如果您项目中未使用 ARC,将为 StyledPageControl.h 和 StyledPageControl.m 添加编译器标志‘-fobjc-arc’
  • XCode 4.4 及更高版本(需要自动合成)

联系方式

twitter.com/honcheng
honcheng.com