时常码一下,也算是对工作学到的知识的一种梳理和记忆。
关于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)];
网友评论