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

直接上代码:

_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;


郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。