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

同一个UILabel使用不同的大小和颜色

时间:2015-07-07 12:43:41      阅读:73      评论:0      收藏:0      [点我收藏+]

标签:

 

UILabel *label2 = [[UILabel alloc]initWithFrame:CGRectMake(0, 480, 300, 50)];

    label2.text = @"SD卡给你个老帅哥";

    label2.textColor = [UIColor blackColor];

    NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:label2.text];

    NSInteger count = label2.text.length;

    [str addAttribute:NSForegroundColorAttributeName value:[UIColor blueColor] range:NSMakeRange(0,4)];

    [str addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(4,count-4)];

    [str addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:15] range:NSMakeRange(0, 4)];

    [str addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:30] range:NSMakeRange(4, count-4)];

    label2.attributedText = str;

    [self.view addSubview:label2];

 

同一个UILabel使用不同的大小和颜色

标签:

原文地址:http://www.cnblogs.com/zhanghuifeng/p/4626423.html

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