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

改变字符串里面多个颜色

时间:2016-05-13 11:25:03      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:

  NSMutableAttributedString *noteStr = [[NSMutableAttributedString alloc] initWithString:[NSString stringWithFormat:@"作品:%@",data[@"works_num"]]];

    NSRange redRange = NSMakeRange(0, [[noteStr string] rangeOfString:@":"].location);

    [noteStr addAttribute:NSForegroundColorAttributeName value:COLOR_9999COLOR range:redRange];

    [_productLabel setAttributedText:noteStr] ;

    [_productLabel sizeToFit];

 

 

 

 //获取内容高度 判断高度的大小 改变其他控件的坐标

    CGFloat heigh1 = [Unit heightWithString:_synopsisLab.text

                                       font:_synopsisLab.font

                         constrainedToWidth:_synopsisLab.width];

    _synopsisLab.height = heigh1;

    synopsisBackView.height = _synopsisLab.height+73;

 

改变字符串里面多个颜色

标签:

原文地址:http://www.cnblogs.com/liaolijun/p/5486383.html

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