首页 > 其他 > 详细

TTTAtibutedlabel

时间:2018-08-14 13:57:33      阅读:348      评论:0      收藏:0      [点我收藏+]
NSString *rateStr = [NSString stringWithFormat:@"七日年化 %.2f%%",info.rate];
    [self.rateLabel setText:rateStr afterInheritingLabelAttributesAndConfiguringWithBlock:
     ^NSMutableAttributedString *(NSMutableAttributedString *mutableAttributedString) {
         [mutableAttributedString addAttribute:(NSString *)kCTForegroundColorAttributeName value:(id)[UIColor blueColor] range:NSMakeRange(0, 4)]; //loc + length
         [mutableAttributedString addAttribute:(NSString *)kCTForegroundColorAttributeName value:(id)[UIColor redColor] range:NSMakeRange(4, rateStr.length-4)];
        [mutableAttributedString addAttribute:NSFontAttributeName value:[UIFont fontWithName:@"HelveticaNeue" size:17.0] range:NSMakeRange(4, rateStr.length-4)];
         return mutableAttributedString;
     }];

TTTAtibutedlabel

原文:https://www.cnblogs.com/guligei/p/9473467.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!