RichText
Posted makingitbest
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了RichText相关的知识,希望对你有一定的参考价值。
RichText
效果
特点
1.按照需要调节部分字体的颜色
2.调节段落的行间距,字间距
源码
github:https://github.com/makingitbest/RichText
细节
1.富文本的设置常用的有以下几种
2.段落样式的设置
NSMutableParagraphStyle *style = [NSMutableParagraphStyle new]; //初始化
style.paragraphSpacing = 20; // 段间距
style.lineSpacing = 2; // 行间距
style.firstLineHeadIndent = 26.f; // 段落开头的缩进,按字体大小,缩进它的两倍
[string addAttribute:NSParagraphStyleAttributeName value:style range:NSMakeRange(0, text.length)];
以上是关于RichText的主要内容,如果未能解决你的问题,请参考以下文章