作者搜了一下网上的富文本,看起来都非常的凌乱,作为一个有严重强迫症的程序猿,最后还是决定自己整理一下,有不足的地方可以补充。
富文本的用法
首先,先看一个简单富文本的例子,了解一下富文本的用法。
** 下面是代码:**
/* 将需要的富文本属性放入字典 */
NSDictionary *attributes = @{ NSForegroundColorAttributeName:[UIColor redColor],
NSBackgroundColorAttributeName:[UIColor greenColor],
NSFontAttributeName:[UIFont fontWithName:@"TimesNewRomanPS-BoldItalicMT" size:19.0],
NSKernAttributeName:@1.0 };
/* 创建富文本对象 */
NSAttributedString *attributeText = [[NSAttributedString alloc] initWithString:@"This is an attributes string" attributes:attributes];
/* 设置 UILabel 的富文本 */
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 500, 40)];
[label setAttributedText:attributeText];
[self.view addSubview:label];
** 效果图:**
用法很简单,就是先将富文本属性都放在一个 NSDictionary
字典中,然后定义一个 NSAttributedString
,设置文字和富文本属性,然后设置 UILabel
的 AttributedText
属性就可以了。
富文本的属性
用法就是上面说的那样,下面主要开始介绍放在 NSDictionary
字典中的不同富文本属性的用法及效果。
** 下面是系统提供的所有富文本属性:**
/** 系统提供的所有富文本属性 */
NSFontAttributeName // 设置字体
NSParagraphStyleAttributeName // 设置段落风格
NSForegroundColorAttributeName // 设置文字颜色
NSBackgroundColorAttributeName // 设置背景颜色
NSLigatureAttributeName // 设置连体属性
NSKernAttributeName // 设置字符间距
NSStrikethroughStyleAttributeName // 添加删除线
NSUnderlineStyleAttributeName // 添加下划线
NSStrokeColorAttributeName // 设置文字描边颜色
NSStrokeWidthAttributeName // 设置文字描边宽度
NSShadowAttributeName // 设置阴影
NSTextEffectAttributeName // 设置文本特殊效果
NSAttachmentAttributeName // 设置文本附件
NSLinkAttributeName // 设置链接属性
NSBaselineOffsetAttributeName // 设置基线偏移量
NSUnderlineColorAttributeName // 添加下划线颜色
NSStrikethroughColorAttributeName // 添加删除线颜色
NSObliquenessAttributeName // 设置字体倾斜
NSExpansionAttributeName // 设置文本扁平
NSWritingDirectionAttributeName // 设置文字书写方向
NSVerticalGlyphFormAttributeName // 设置文本段落排版格式
1. NSFontAttributeName 设置字体
NSFontAttributeName:[UIFont systemFontOfSize:(CGFloat)] // 字体大小
NSFontAttributeName:[UIFont fontWithName:(nonnull NSString *) size:(CGFloat)] // 字体名称,字体大小
2. NSParagraphStyleAttributeName 设置段落风格
/* 需要一个 NSMutableParagraphStyle 实例对象。 */
NSMutableParagraphStyle *paragraph = [[NSMutableParagraphStyle alloc] init];
paragraph.alignment = NSTextAlignmentCenter; // 居中
paragraph.lineSpacing = 10; // 文字的行间距
/* 用法 */
NSParagraphStyleAttributeName : paragraph
3. NSForegroundColorAttributeName、NSBackgroundColorAttributeName 设置字体和背景颜色
NSForegroundColorAttributeName:[UIColor redColor]
NSBackgroundColorAttributeName:[UIColor greenColor]
4. NSKernAttributeName 设置字符间距
NSKernAttributeName:@-1.0 // 正值间距加宽,负值间距变窄
5. NSStrikethroughStyleAttributeName、NSUnderlineStyleAttributeName 添加删除线和下划线
NSStrikethroughStyleAttributeName:@(NSUnderlineStyleSingle) // 删除线样式
NSStrikethroughColorAttributeName:[UIColor redColor] // 删除线颜色
NSUnderlineStyleAttributeName:@(NSUnderlineStyleSingle) // 下划线样式
NSUnderlineColorAttributeName:[UIColor redColor] // 下划线颜色
6. NSStrokeColorAttributeName、NSStrokeWidthAttributeName 设置文字描边颜色和宽度
/* 单独设置颜色无效果,需要和宽度同时设置才有效 */
NSStrokeColorAttributeName:[UIColor redColor]
NSStrokeWidthAttributeName:@3
7. NSShadowAttributeName 设置阴影
/* 需要一个 NSShadow 实例对象。 */
NSShadow * shadow = [[NSShadow alloc]init];
shadow.shadowBlurRadius = 5; // 模糊度
shadow.shadowColor = [UIColor grayColor]; // 颜色
shadow.shadowOffset = CGSizeMake(1, 3); // 偏移
/* 用法 */
NSShadowAttributeName:shadow
** 效果图:**
8. NSVerticalGlyphFormAttributeName、NSObliquenessAttributeName、NSExpansionAttributeName 绘制文本、设置字体倾斜、设置文本横向拉伸压缩属性
/* 对于 NSVerticalGlyphFormAttributeName 设置文本排版格式,0 表示横排文本、1 表示竖排文本。在 iOS 中,总是使用横排文本,0 以外的值都未定义。 */
NSVerticalGlyphFormAttributeName:@(0) // 文本排版格式
NSObliquenessAttributeName:@1 // 字体倾斜
NSExpansionAttributeName:@1 // 文本横向拉伸压缩属性
9. NSLigatureAttributeName 设置连体属性
/* 0 表示没有连体字符,1 表示使用默认的连体字符,2 表示使用所有连体符号,默认值为 1(iOS 不支持 2) */
NSLigatureAttributeName:@0
NSLigatureAttributeName:@1
** 效果图:**
10. NSTextEffectAttributeName 设置文本特殊效果
/* 取值为 NSString 对象,目前只有图版印刷效果可用。 */
NSTextEffectAttributeName: NSTextEffectLetterpressStyle
** 效果图:**
11. NSLinkAttributeName 设置链接属性
/* 设置文字点击跳转的网址,点击后调用浏览器打开指定 URL 地址。 */
NSLinkAttributeName:[NSURL URLWithString:@"http://www.baidu.com"]
12. NSBaselineOffsetAttributeName 设置基线偏移量
/* 正值上偏,负值下偏。 */
NSBaselineOffsetAttributeName:@3
13. NSAttachmentAttributeName 设置文本附件
/* 需要一个 NSTextAttachment 实例对象。 */
NSTextAttachment *textAttachment = [[NSTextAttachment alloc] initWithData:(nullable NSData *) ofType:(nullable NSString *)];
/* 用法 */
NSAttachmentAttributeName:textAttachment
14. NSWritingDirectionAttributeName 设置文字书写方向
/* 从左到右书写 */
@[@(NSWritingDirectionLeftToRight | NSTextWritingDirectionEmbedding)]
@[@(NSWritingDirectionLeftToRight | NSTextWritingDirectionOverride)]
/* 从右到左书写 */
@[@(NSWritingDirectionRightToLeft | NSTextWritingDirectionEmbedding)]
@[@(NSWritingDirectionRightToLeft | NSTextWritingDirectionOverride)]
/* 用法 */
NSWritingDirectionAttributeName:@[@(NSWritingDirectionRightToLeft|NSWritingDirectionOverride)]
** 效果图:**
好了,大概就是那么多,有需要补充的后续还会再补充,最后附上本文参考的文章地址。
将来的你,一定会感激现在拼命的自己,愿自己与读者的开发之路无限美好。