這篇文章主要介紹了IOS中一段文字設置多種字體顏色代碼,十分的實用,有需要的小伙伴可以參考下。
給定range和需要設置的顏色,就可以給一段文字設置多種不同的字體顏色,使用方法如下:
代碼如下:
[self fuwenbenLabel:contentLabel FontNumber:[UIFont systemFontOfSize:15] AndRange:NSMakeRange(6, 1) AndColor:RGBACOLOR(34, 150, 253, 1)];
代碼如下:
//設置不同字體顏色
-(void)fuwenbenLabel:(UILabel *)labell FontNumber:(id)font AndRange:(NSRange)range AndColor:(UIColor *)vaColor
{
NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:labell.text];
//設置字號
[str addAttribute:NSFontAttributeName value:font range:range];
//設置文字顏色
[str addAttribute:NSForegroundColorAttributeName value:vaColor range:range];
labell.attributedText = str;
}
以上所述就是本文的全部內容了,希望大家能夠喜歡。