美文网首页iOS-开发iOS开发系列
iOS 富文本 字符串多样式展现

iOS 富文本 字符串多样式展现

作者: 山水域 | 来源:发表于2016-08-19 14:09 被阅读1156次

    用最简单的方式,最快的速度让你掌握使用iOS 富文本 NSMutableAttributedString

    Snip20160819_7.png

    常用属性

         字体:NSFontAttributeName
         该属性所对应的值是一个 UIFont 对象。该属性用于改变一段文本的字体。如果不指定该属性,则默认为12-point Helvetica(Neue)。
         
         段落格式:NSParagraphStyleAttributeName
         该属性所对应的值是一个 NSParagraphStyle 对象。该属性在一段文本上应用多个属性。如果不指定该属性,则默认为 NSParagraphStyle 的defaultParagraphStyle 方法返回的默认段落属性。
          
         字体颜色:NSForegroundColorAttributeName
         该属性所对应的值是一个 UIColor 对象。该属性用于指定一段文本的字体颜色。如果不指定该属性,则默认为黑色。
         
         NSForegroundColorAttributeName 设置的颜色与 UILabel 的 textColor 属性设置的颜色在地位上是相等的,与 NSBackgroundColorAttributeName 地位上也相等,谁最后赋值,最终显示的就是谁的颜色,但是textColor属性可以与 NSBackgroundColorAttributeName 属性可叠加。
         
         
         背景颜色:NSBackgroundColorAttributeName
         该属性所对应的值是一个 UIColor 对象。该属性用于指定一段文本的背景颜色。如果不指定该属性,则默认无背景色。
         
         删除线格式 :
         NSStrikethroughStyleAttributeName 设置删除线,取值为 NSNumber 对象(整数),枚举常量 NSUnderlineStyle中的值:
         •  NSUnderlineStyleNone 不设置删除线
         •  NSUnderlineStyleSingle 设置删除线为细单实线
         •  NSUnderlineStyleThick 设置删除线为粗单实线
         •  NSUnderlineStyleDouble 设置删除线为细双实线
         
         •  虽然使用了枚举常量,但是枚举常量的本质仍为整数,所以同样必须先转化为 NSNumber 才能使用
         •  删除线和下划线使用相同的枚举常量作为其属性值
         •  目前iOS中只有上面列出的4中效果,虽然我们能够在头文件中发现其他更多的取值,但是使用后没有任何效果
         
         另外,删除线属性取值除了上面的4种外,其实还可以取其他整数值,有兴趣的可以自行试验,取值为 0 - 7时,效果为单实线,随着值得增加,单实线逐渐变粗,取值为 9 - 15时,效果为双实线,取值越大,双实线越粗。
         
         下划线格式:NSUnderlineStyleAttributeName
         该属性所对应的值是一个 NSNumber 对象(整数)。该值指定是否在文字上加上下划线,该值参考“Underline Style Attributes”。默认值是NSUnderlineStyleNone。
         下划线除了线条位置和删除线不同外,其他的都可以完全参照删除线设置。
         
         删除线颜色:NSStrikethroughColorAttributeName
         NSStrikethroughColorAttributeName 设置删除线颜色,取值为 UIColor 对象,默认值为黑色
         
         删除线宽度:NSStrokeWidthAttributeName
         
         阴影:NSShadowAttributeName
         该属性所对应的值是一个 NSShadow 对象。默认为 nil。单独设置不好使,和这三个任意一个都可以,NSVerticalGlyphFormAttributeName,NSObliquenessAttributeName,NSExpansionAttributeName
         
         字间距:NSKernAttributeName(字间距)
         NSKernAttributeName 设定字符间距,取值为 NSNumber 对象(整数),正值间距加宽,负值间距变窄
         
         边线颜色:NSStrokeColorAttributeName(边线颜色) 和 NSStrokeWidthAttributeName(边线宽度)
         NSStrokeWidthAttributeName 这个属性所对应的值是一个 NSNumber 对象(小数)。该值改变笔画宽度(相对于字体 size 的百分比),负值填充效果,正值中空效果,默认为 0,即不改变。正数只改变描边宽度。负数同时改变文字的描边和填充宽度。例如,对于常见的空心字,这个值通常为 3.0。
         同时设置了空心的两个属性,并且 NSStrokeWidthAttributeName 属性设置为整数,文字前景色就无效果了
         
         字体倾斜:NSObliquenessAttributeName(字体倾斜)
         
         文本扁平化:NSExpansionAttributeName (文本扁平化)
    

    iOS 代码

     UILabel *myFirstLabel = [[UILabel alloc] initWithFrame:CGRectMake(20, 100, 440, 50)];
        [self.view addSubview:myFirstLabel];
        /**
         NSMutableAttributedString 初始化
         */
        NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:@"MaoAttributedString蓝翔技校" attributes:@{NSFontAttributeName:[UIFont systemFontOfSize:20]}];
        /**
         *  添加属性
         为某一范围内文字设置多个属性
         - (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;
         */
        [attributedString addAttributes:@{NSForegroundColorAttributeName:[UIColor redColor],NSBackgroundColorAttributeName:[UIColor blueColor]} range:NSMakeRange(0, 2)];
        [attributedString addAttributes:@{NSStrikethroughStyleAttributeName:@(9)} range:NSMakeRange(2, 5)];
        [attributedString addAttributes:@{NSStrikethroughStyleAttributeName:@(2),NSStrikethroughColorAttributeName:[UIColor greenColor]} range:NSMakeRange(9, 3)];
        [attributedString addAttributes:@{NSStrokeColorAttributeName:[UIColor orangeColor],NSStrokeWidthAttributeName:@(2),NSFontAttributeName:[UIFont systemFontOfSize:30]} range:NSMakeRange(13, 4)];
        [attributedString addAttributes:@{NSStrokeColorAttributeName:[UIColor cyanColor],NSStrokeWidthAttributeName:@(-2),NSFontAttributeName:[UIFont systemFontOfSize:25]} range:NSMakeRange(17, 3)];
        [attributedString addAttributes:@{NSExpansionAttributeName:@(1),NSObliquenessAttributeName:@(1)} range:NSMakeRange(20, 2)];
        
        [attributedString addAttributes:@{NSKernAttributeName:@(30)} range:NSMakeRange(20, 1)];
    
        /**
         *  添加方法
         */
    
        myFirstLabel.attributedText = attributedString;
        
        UITextField *myFirstTextField = [[UITextField alloc] initWithFrame:CGRectMake(20, 200, 400, 60)];
        [self.view addSubview:myFirstTextField];
        myFirstTextField.attributedText = attributedString;
        
        UITextView *myFirstTextView = [[UITextView alloc] initWithFrame:CGRectMake(60, 300, 300, 60)];
        [self.view addSubview:myFirstTextView];
        myFirstTextView.attributedText = attributedString;
        
    
    

    参考码友

    NSFontAttributeName                设置字体属性,默认值:字体:Helvetica(Neue) 字号:12
    NSForegroundColorAttributeNam      设置字体颜色,取值为 UIColor对象,默认值为黑色
    NSBackgroundColorAttributeName     设置字体所在区域背景颜色,取值为 UIColor对象,默认值为nil, 透明色
    NSLigatureAttributeName            设置连体属性,取值为NSNumber 对象(整数),0 表示没有连体字符,1 表示使用默认的连体字符
    NSKernAttributeName                设定字符间距,取值为 NSNumber 对象(整数),正值间距加宽,负值间距变窄
    NSStrikethroughStyleAttributeName  设置删除线,取值为 NSNumber 对象(整数)
    NSStrikethroughColorAttributeName  设置删除线颜色,取值为 UIColor 对象,默认值为黑色
    NSUnderlineStyleAttributeName      设置下划线,取值为 NSNumber 对象(整数),枚举常量 NSUnderlineStyle中的值,与删除线类似
    NSUnderlineColorAttributeName      设置下划线颜色,取值为 UIColor 对象,默认值为黑色
    NSStrokeWidthAttributeName         设置笔画宽度,取值为 NSNumber 对象(整数),负值填充效果,正值中空效果
    NSStrokeColorAttributeName         填充部分颜色,不是字体颜色,取值为 UIColor 对象
    NSShadowAttributeName              设置阴影属性,取值为 NSShadow 对象
    NSTextEffectAttributeName          设置文本特殊效果,取值为 NSString 对象,目前只有图版印刷效果可用:
    NSBaselineOffsetAttributeName      设置基线偏移值,取值为 NSNumber (float),正值上偏,负值下偏
    NSObliquenessAttributeName         设置字形倾斜度,取值为 NSNumber (float),正值右倾,负值左倾
    NSExpansionAttributeName           设置文本横向拉伸属性,取值为 NSNumber (float),正值横向拉伸文本,负值横向压缩文本
    NSWritingDirectionAttributeName    设置文字书写方向,从左向右书写或者从右向左书写
    NSVerticalGlyphFormAttributeName   设置文字排版方向,取值为 NSNumber 对象(整数),0 表示横排文本,1 表示竖排文本
    NSLinkAttributeName                设置链接属性,点击后调用浏览器打开指定URL地址
    NSAttachmentAttributeName          设置文本附件,取值为NSTextAttachment对象,常用于文字图片混排
    NSParagraphStyleAttributeName      设置文本段落排版格式,取值为 NSParagraphStyle 对象
    

    点击查看源码

    点我点我点我哦.png
    qrcode_for_gh_66ad36353006_430.jpg

    相关文章

      网友评论

      • 爱的播放:推荐一款写富文本非常好用的控件:NudeIn,你完全不用去学习这些蛋疼的原生写法,可以像masonry那样写富文本控件
        github地址:https://github.com/hon-key/Nudeln
        山水域:@爱的播放 thank you
      • Lazyloading:请问为什么textfield富文本无效呢?用textview或者label都可以
        Lazyloading:@山水域 不是,是textfield根本就不显示富文本图片,我用textview或者label就没问题
        山水域:如果是动态输入时,可能要在TextField 相应代理中动态添加富文本
        山水域:你是想问动态输入时富文本无效吗?
      • MarAlves: 大神我想问下要实现文本中个别字体背景颜色设置圆角用富文本要怎么做呢,如果富文本不行那应该用什么方法才能做呢
        MarAlves:@super_Mao 好的,谢谢
        山水域:@MarAlves 背景颜色的形状只有矩形,你可以考虑每个label上一个字,设置label的颜色和圆角就可以了。

      本文标题:iOS 富文本 字符串多样式展现

      本文链接:https://www.haomeiwen.com/subject/uvebsttx.html