效果图:
注意:
1、其中count是一个数字,例如:5,即5人赞过中的数字5。
2、_countLabel 是UILabel类型的一个控件。
// 通过截取的方式,来设置***人赞过中数字的颜色
NSString*string = [NSString stringWithFormat:@"%ld人赞过",(long)count];
NSMutableAttributedString*attributeString = [[NSMutableAttributedStringalloc] initWithString:string];
NSRange range = [string rangeOfString:[NSString stringWithFormat:@"%ld",(long)count]];
[attributeString addAttribute:NSForegroundColorAttributeName value:RGBCOLOR(246, 153,19) range:range];
// 使用UILabel的attributedText 属性来赋值。
_countLabel.attributedText= attributeString;