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

调用

[self fuwenbenLabel:contentLabel FontNumber:[UIFont systemFontOfSize:] AndRange:NSMakeRange(, ) AndColor:RGBACOLOR(, , , )];

方法

 //设置不同字体颜色
-(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;
}
上一篇:C# 实现无标题栏窗体点击任务栏图标正常最小化或还原的解决方法


下一篇:静默安装Oracle12.2数据库