qq2511296
2015-04-11 13:27:46 +08:00
_label.text = @"备注1:hello world";
NSMutableAttributedString *attr = [[NSMutableAttributedString alloc]initWithString:_label.text];
[attr addAttribute:NSForegroundColorAttributeName value:[UIColor greenColor] range:[_label.text rangeOfString:@"备注1:"]];
[attr addAttribute:NSForegroundColorAttributeName value:[UIColor blackColor] range:[_label.text rangeOfString:@"hello world"]];
_label.attributedText = attr;