下划线

作者: 码农进城 | 来源:发表于2017-07-12 14:27 被阅读0次

    NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:

    @"4、本活动最终解释权归量子排毒垫所有,如有其他疑问请咨询官方客服0592-12345678;"];

    [str addAttribute:NSForegroundColorAttributeName value:

    [UIColor colorWithRed:17/255.0 green:17/255.0 blue:17/255.0 alpha:1] range:NSMakeRange(0,32)];

    [str addAttribute:NSForegroundColorAttributeName value:

    [UIColor colorWithRed:12/255.0 green:190/255.0 blue:61/255.0 alpha:1] range:NSMakeRange(32,13)];

    [str addAttribute:NSUnderlineStyleAttributeName value:

    [NSNumber numberWithInteger:NSUnderlineStyleSingle] range:NSMakeRange(32, 13)]; // 下划线类型

    _lb.attributedText = str;

    相关文章

      网友评论

          本文标题:下划线

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