iOS - 详解富文本属性 NSMutableAttributedString

NSMutableAttributedString 使用

使用字符串初始化

  • - (id)initWithString:(NSString *)str;
NSMutableAttributedString * attString = [[NSMutableAttributedString alloc] initWithString:@"使用字符串初始化"];
  • - (id)initWithString:(NSString *)str attributes:(NSDictionary *)attrs;
NSDictionary * attributeDict = @{NSFontAttributeName:[UIFont systemFontOfSize:15],
                           NSForegroundColorAttributeName:[UIColor yellowColor],
                           NSShadowAttributeName:shadow,
                           NSVerticalGlyphFormAttributeName:@(0),
                           NSObliquenessAttributeName:@(1),
                           NSExpansionAttributeName:@(1)
                           };
NSMutableAttributedString * attString = [[NSMutableAttributedString alloc]initWithString:@"使用字符串初始化" attributes:attributeDict];
  • - (id)initWithAttributedString:(NSAttributedString *)attester;

使用NSAttributedString初始化,和NSMutableString、NSString类似

使用方法:

  • 给某一范围内文字设置多个属性
    - (void)setAttributes:(NSDictionary *)attrs range:(NSRange)range;
  • 给某一范围内文字添加某个属性
    - (void)addAttribute:(NSString *)name value:(id)value range:(NSRange)range;
  • 给某一范围内文字添加多个属性
    - (void)addAttributes:(NSDictionary *)attrs range:(NSRange)range;
  • 移除某范围内的某个属性
    - (void)removeAttribute:(NSString *)name range:(NSRange)range;

常见的属性及说明

1.NSFontAttributeName

->设置字体属性,默认值:字体:Helvetica(Neue) 字号:12
例:

[UIFont systemFontOfSize:_fontSize] 字体大小
[UIFont fontWithName:@"Arial-BoldItalicMT" size:24] 字体格式和大小

[attString addAttributes:@{NSFontAttributeName:[UIFont fontWithName:@"Arial-BoldItalicMT" size:24]} range:NSMakeRange(2, 5)];

2.NSForegroundColorAttributeName

->设置字体颜色,取值为 UIColor对象,默认值为黑色
例:

[attString addAttribute: NSForegroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(0, 5)];

3.NSBackgroundColorAttributeName

->设置字体所在区域背景颜色,取值为 UIColor对象,默认值为nil, 透明色
例:

[attString addAttribute: NSBackgroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(0, 5)];

4.NSKernAttributeName

->设置字符间距,取值为 NSNumber 对象(整数),正值间距加宽,负值间距变窄
例:

[attString addAttributes:@{NSKernAttributeName:@(3)} range:NSMakeRange(2, 5)];

5.NSParagraphStyleAttributeName

->设置文本段落排版格式,取值为 NSParagraphStyle 对象
例:

 NSMutableParagraphStyle *paragraph = [[NSMutableParagraphStyle alloc] init];
 paragraph.alignment = NSTextAlignmentCenter;
[attString addAttribute: NSParagraphStyleAttributeName value: paragraph range:NSMakeRange(0, 5)];

6.NSLigatureAttributeName

->设置连体属性,取值为NSNumber 对象(整数),0 表示没有连体字符,1 表示使用默认的连体字符

注: 一般中文用不到,在英文中可能出现相邻字母连笔的情况

7.NSStrikethroughStyleAttributeName

->设置删除线,取值为 NSNumber 对象(整数)
/* 值为整型NSNumber,可取值为(取值大小为删除线的宽度)
enum {

    NSUnderlineStyleNone = 0×00,
 
    NSUnderlineStyleSingle = 0×01,
    
    }; 设置删除线。
*/

例:

 [attString addAttribute:NSStrikethroughStyleAttributeName value:@(NSUnderlineStyleSingle) range:range];

8.NSStrikethroughColorAttributeName

->设置删除线颜色,取值为 UIColor 对象,默认值为黑色

9.NSUnderlineStyleAttributeName

->设置下划线,取值为 NSNumber 对象(整数),枚举常量 NSUnderlineStyle中的值,与删除线类似
例:

 [attString addAttribute:NSUnderlineStyleAttributeName value:@(NSUnderlineStyleSingle) range:range];

10.NSUnderlineColorAttributeName

->设置下划线颜色,取值为 UIColor 对象,默认值为黑色

11.NSStrokeColorAttributeName

->填充部分颜色,不是字体颜色,取值为 UIColor 对象
和NSStrokeWidthAttributeName 同时使用,这样就能使文字空心.

注: 同时设置了空心的两个属性,并且NSStrokeWidthAttributeName属性设置为整数,文字前景色就无效果了

例:

    NSDictionary * dic = @{NSStrokeColorAttributeName:[UIColor yellowColor],
                           NSStrokeWidthAttributeName:@(1)};
    [attString addAttributes:dic range:NSMakeRange(2, 3)];

12.NSStrokeWidthAttributeName

->设置笔画宽度(粗细),取值为 NSNumber 对象(整数),负值填充效果,正值中空效果

这个属性所对应的值是一个 NSNumber 对象(小数)。该值改变描边宽度(相对于字体size 的百分比)。默认为 0,即不改变。正数只改变描边宽度。负数同时改变文字的描边和填充宽度。例如,对于常见的空心字,这个值通常为3.0。

13.NSTextEffectAttributeName

->设置文本特殊效果,取值为 NSString 对象,目前只有图版印刷效果可用

[attString addAttribute:NSTextEffectAttributeName value:NSTextEffectLetterpressStyle range:NSMakeRange(124, 11)];

14.NSBaselineOffsetAttributeName

->设置基线偏移值,取值为 NSNumber (float),正值上偏,负值下偏
/* 此属性的值是包含一个浮点值的NSNumber对象,表示的字符从基线偏移的NSNumber对象,默认值是0。正值上偏,负值下偏 */

15.NSShadowAttributeName

->设置阴影属性,取值为 NSShadow 对象
单独设置不好使,必须和以下三个中的任一个一起设置才好使
NSObliquenessAttributeNameNSExpansionAttributeName,NSVerticalGlyphFormAttributeName.
例:

    NSShadow * shadow = [[NSShadow alloc]init];
    shadow.shadowBlurRadius = 5;//模糊度
    shadow.shadowColor = [UIColor redColor];
    shadow.shadowOffset = CGSizeMake(1, 3);
    
    //绘制文本
    NSDictionary * dic = @{NSFontAttributeName:[UIFont systemFontOfSize:15],
                           NSForegroundColorAttributeName:[UIColor yellowColor],
                           NSShadowAttributeName:shadow,
                           NSVerticalGlyphFormAttributeName:@(0),
                           NSObliquenessAttributeName:@(1),
                           NSExpansionAttributeName:@(1)
                           };
    [attString addAttributes:dic range:NSMakeRange(0, self.fiveLa.text.length)];

16.NSObliquenessAttributeName

->设置字形倾斜度,取值为 NSNumber (float),正值右倾,负值左倾

17.NSExpansionAttributeName

->设置文本横向拉伸属性,取值为 NSNumber (float),正值横向拉伸文本,负值横向压缩文本

18.NSVerticalGlyphFormAttributeName

->设置文字排版方向,取值为 NSNumber 对象(整数),0 表示横排文本,1 表示竖排文本

19.NSWritingDirectionAttributeName

->设置文字书写方向,从左向右书写或者从右向左书写

    /** 
     * 取值为包含NSNumber对象的数组. 从左向右书写或者从右向左书写.
     *
     * The values of the NSNumber objects should be 0, 1, 2, or 3, for LRE, RLE, LRO, or RLO respectively, and combinations of NSWritingDirectionLeftToRight and NSWritingDirectionRightToLeft with NSTextWritingDirectionEmbedding or NSTextWritingDirectionOverride, as shown in Values of NSWritingDirectionAttributeName and equivalent markup.
     
     */
    [attString addAttribute:NSWritingDirectionAttributeName value:@[@3] range:NSMakeRange(195, 11)];

20.NSLinkAttributeName

->设置链接属性,点击后调用浏览器打开指定URL地址

    /**
     * 此属性的值是NSURL对象(首选)或一个NSString对象。此属性的默认值为nil,表示没有链接。
     * UILabel无法使用该属性, 可以使用UITextView 控件.
     */
    [attString addAttribute:NSLinkAttributeName value:[NSURL URLWithString:@"http://www.baidu.com"] range:NSMakeRange(207, 9)];

21.NSAttachmentAttributeName

->设置文本附件,取值为NSTextAttachment对象,常用于文字图片混排

    /* 这个属性的值是一个NSTextAttachment对象。此属性的默认值为nil,表示无附件。*/
    
    /**
     * 关于NSTextAttachment类的简单说明
     *
     * NSTextAttachment 类有一个指定的初始化方法(- initWithData:ofType:), 需要指定附件文档的数据和附件文件的类型. 如果附件文档数据指定nil, 那么系统将会默认指定为image对象作为值. 因此, 也可以通过这个特性实现图文混排.
     * 下面就以附件为image对象来说明NSAttachmentAttributeName的使用.
     *
     */
    NSTextAttachment *attach = [[NSTextAttachment alloc] initWithData:nil ofType:nil];
    attach.bounds = CGRectMake(0, 0, 20, 20);
    attach.image = [UIImage imageNamed:@"cat.jpg"];
    NSAttributedString *strAtt = [NSAttributedString attributedStringWithAttachment:attach];
    [attString insertAttributedString:strAtt atIndex:222];

代码

显示的文本内容,创建个 UITextView 用来显示内容的

1.设置字体属性
2.设置字体颜色
3.设置字体所在区域背景颜色
4.设置字符间距
5.设置文本段落排版格式
6.设置连体属性
7.设置删除线
8.设置删除线颜色
9.设置下划线
10.设置下划线颜色
11.填充部分颜色
12.设置笔画宽度(粗细)
13.设置文本特殊效果
14.设置基线偏移值
15.设置阴影属性
16.设置字形倾斜度
17.设置文本横向拉伸属性
18.设置文字排版方向
19.设置文字书写方向
20.设置链接属性
21.设置文本附件

富文本设置代码

- (void)attributedString{
    NSMutableAttributedString * attString = [[NSMutableAttributedString alloc]initWithString:self.textView.text];
    [attString addAttributes:@{NSFontAttributeName:[UIFont systemFontOfSize:18]} range:NSMakeRange(0, self.textView.text.length)];
    //1.设置字体属性
    [attString addAttributes:@{NSFontAttributeName:[UIFont fontWithName:@"Arial-BoldItalicMT" size:20]} range:NSMakeRange(0, 8)];
    //2.设置字体颜色
    [attString addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(9, 9)];
    //3.设置字体所在区域背景颜色
    [attString addAttribute:NSBackgroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(18, 14)];
    //4.设置字符间距
    
    [attString addAttribute: NSKernAttributeName value: @(5) range:NSMakeRange(35, 6)];
    //5.设置文本段落排版格式
    NSMutableParagraphStyle *paragraph = [[NSMutableParagraphStyle alloc] init];
    paragraph.alignment = NSTextAlignmentCenter;
    paragraph.lineSpacing = 15;//调整行间距
    [attString addAttribute: NSParagraphStyleAttributeName value: paragraph range:NSMakeRange(42, 12)];
    [attString addAttribute:NSBackgroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(42, 12)];
    //6.设置连体属性
    //7.设置删除线
    [attString addAttribute:NSStrikethroughStyleAttributeName value:@(NSUnderlineStyleSingle) range:NSMakeRange(64, 8)];
    //8.设置删除线颜色
    [attString addAttribute:NSStrikethroughStyleAttributeName value:@(NSUnderlineStyleSingle) range:NSMakeRange(72, 9)];
    [attString addAttribute:NSStrikethroughColorAttributeName value:[UIColor redColor] range:NSMakeRange(72, 10)];
    //9.设置下划线
    [attString addAttribute:NSUnderlineStyleAttributeName value:@(NSUnderlineStyleSingle) range:NSMakeRange(82, 7)];
    
    //10.设置下划线颜色
    [attString addAttribute:NSUnderlineStyleAttributeName value:@(NSUnderlineStyleSingle) range:NSMakeRange(90, 10)];
    [attString addAttribute:NSUnderlineColorAttributeName value:[UIColor redColor] range:NSMakeRange(90, 10)];
    //11.填充部分颜色
    //12.设置笔画宽度(粗细)
    [attString addAttributes:@{NSStrokeColorAttributeName:[UIColor blueColor],NSStrokeWidthAttributeName:@(1)} range:NSMakeRange(101, 23)];
    //13.设置文本特殊效果
    [attString addAttribute:NSTextEffectAttributeName value:NSTextEffectLetterpressStyle range:NSMakeRange(125, 11)];
    //14.设置基线偏移值
    [attString addAttribute:NSBaselineOffsetAttributeName value:@8 range:NSMakeRange(137, 10)];
    //15.设置阴影属性
    NSShadow * shadow = [[NSShadow alloc]init];
    shadow.shadowBlurRadius = 5;//模糊度
    shadow.shadowColor = [UIColor redColor];
    shadow.shadowOffset = CGSizeMake(1, 2);
    
    //16.设置字形倾斜度
    [attString addAttributes:@{
                               NSFontAttributeName:[UIFont systemFontOfSize:15],
                               NSForegroundColorAttributeName:[UIColor yellowColor],
                               NSShadowAttributeName:shadow,
                               NSObliquenessAttributeName:@(1),
                               } range:NSMakeRange(158, 10)];
    //17.设置文本横向拉伸属性
    [attString addAttributes:@{
                               NSFontAttributeName:[UIFont systemFontOfSize:18],
                               NSForegroundColorAttributeName:[UIColor purpleColor],NSShadowAttributeName:shadow,
                               NSExpansionAttributeName:@(1),
                               } range:NSMakeRange(169, 13)];
    //18.设置文字排版方向
    [attString addAttributes:@{
                               NSFontAttributeName:[UIFont systemFontOfSize:20],
                               NSForegroundColorAttributeName:[UIColor magentaColor],NSShadowAttributeName:shadow,
                               NSVerticalGlyphFormAttributeName:@(0),
                               } range:NSMakeRange(183, 11 )];
    
    //19.设置文字书写方向
    [attString addAttribute:NSWritingDirectionAttributeName value:@[@3] range:NSMakeRange(195, 11)];
    //20.设置链接属性
    [attString addAttribute:NSLinkAttributeName value:[NSURL URLWithString:@"http://www.baidu.com"] range:NSMakeRange(207, 9)];
    //21.设置文本附件
    NSTextAttachment *attach = [[NSTextAttachment alloc] initWithData:nil ofType:nil];
    attach.bounds = CGRectMake(0, 0, 20, 20);
    attach.image = [UIImage imageNamed:@"cat.jpg"];
    NSAttributedString *strAtt = [NSAttributedString attributedStringWithAttachment:attach];
    [attString insertAttributedString:strAtt atIndex:222];
    self.textView.attributedText = attString;
}
运行效果.jpeg
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,033评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,725评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,473评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,846评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,848评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,691评论 1 282
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,053评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,700评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,856评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,676评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,787评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,430评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,034评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,990评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,218评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,174评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,526评论 2 343

推荐阅读更多精彩内容