码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 设置Label中特定的文字大小和颜色

时间:2015-03-20 09:21:39      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:

直接上代码:

_price = @"27";

NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:_cookPrice.text];

//设置颜色

    [attributedString addAttribute:NSForegroundColorAttributeName value:[MCUtils colorWithRGBString:@"#FFA025"] range:NSMakeRange(0, _price.length)]; // 0为起始位置 length是从起始位置开始 设置指定颜色的长度


//设置尺寸

    [attributedString addAttribute:NSFontAttributeName value:kFont17 range:NSMakeRange(0, _price.length)]; // 0为起始位置 length是从起始位置开始 设置指定字体尺寸的长度

   //这段代码必须要写 否则没效果

    _cookPrice.attributedText = attributedString;


iOS 设置Label中特定的文字大小和颜色

标签:

原文地址:http://blog.csdn.net/liuxu0718/article/details/44482003

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