标签:
实现效果:
UILabel *valueLabel=[[UILabel alloc]init];
NSMutableAttributedString *str=[[NSMutableAttributedString alloc]initWithString:@"昨日产值: 5L鲜奶"];//有空格
[str addAttribute:NSForegroundColorAttributeName value:[UIColor lightGrayColor] range:NSMakeRange(0, 5)];
[str addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:14.0f] range:NSMakeRange(0, 5)];
[str addAttribute:NSForegroundColorAttributeName value:[UIColor colorWithRed:244/255.0f green:93/255.0f blue:97/255.0f alpha:1.0] range:NSMakeRange(5, 5)];
[str addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:18.0f] range:NSMakeRange(5, 5)];
[valueLabel setAttributedTitle:str forState:UIControlStateNormal];
#warning :1.关键字 NSMutableAttributedString
2.注意 NSMakeRange(a,b)中 ,参数1:是起始点位置下标 参数2:长度
标签:
原文地址:http://www.cnblogs.com/vegas/p/5133204.html