NSString * pricstr=@"价格:";
_pricelable.text = [NSString stringWithFormat:@"%@%@",pricstr,drawmodel.shop_price];
//改变字符串颜色
NSMutableAttributedString *textColor = [[NSMutableAttributedString alloc]initWithString:_pricelable.text];
NSRange rangel = [[textColor string] rangeOfString:[_pricelable.text substringFromIndex:3]];
[textColor addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:rangel];
[textColor addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:15] range:rangel];
[_pricelable setAttributedText:textColor];