iOS一段文字设置多种颜色格式

一段文字设置多种字体颜色给定range和需要设置的颜色,就可以给一段文字设置多种不同的字体颜色,使用方法如下:
Number:[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; }
posted @ 2015-12-30 15:50  LoyaltyProgram  阅读(174)  评论(0编辑  收藏  举报