日常知识总结之-修改字体大小和颜色

来源:互联网 发布:淘宝与京东哪个更可靠 编辑:程序博客网 时间:2024/05/17 09:26
    //修改价格字体    NSMutableAttributedString *textColor = [[NSMutableAttributedString alloc]initWithString:_priceLB.text];    NSRange rangel = [[textColor string] rangeOfString:[_priceLB.text substringWithRange:NSMakeRange(0, 1)]];    [textColor addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:rangel];    [textColor addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:11] range:rangel];        [_priceLB setAttributedText:textColor];

1 0