码迷,mamicode.com
首页 > 其他好文 > 详细

设置一段文字显示不同的颜色及大小等属性

时间:2016-01-15 15:51:33      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:

   实现效果:技术分享

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!