美文网首页
create a new branch(NSTextAttrib

create a new branch(NSTextAttrib

作者: choosingSl | 来源:发表于2016-05-20 18:35 被阅读33次

    时常码一下,也算是对工作学到的知识的一种梳理和记忆。

    关于NSTextAttribute,以前一直用的是UIText,知道有天业务上需要对一段文字做不同的处理,例如前面4个字符14号字体白色,后面5个字符却是12号字体色值为@"FFFFFF";

    NSMutableAttributedString *AttributedStr = [[NSMutableAttributedString alloc]initWithString: @"开售提醒 (已抢光)"];

    [AttributedStr addAttribute:NSFontAttributeName

    value:[UIFont boldSystemFontOfSize:14]

    range:NSMakeRange(0, 4)];

    [AttributedStr addAttribute:NSFontAttributeName

    value:[UIFont systemFontOfSize:12]

    range:NSMakeRange(5, 5)];

    [AttributedStr addAttribute:NSForegroundColorAttributeName

    value:[UIColor whiteColor]

    range:NSMakeRange(0, 4)];

    [AttributedStr addAttribute:NSForegroundColorAttributeName

    value:[UIColor colorWithHexString:@"FFFFFF"]

    range:NSMakeRange(5, 5)];

    相关文章

      网友评论

          本文标题:create a new branch(NSTextAttrib

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