我想创建一个标签,其中包含具有不同颜色的文本。像这样,
我在 iOS 6 中使用NSMutableAttributedString
NSMutableAttributedString *text = [[NSMutableAttributedString alloc] initWithAttributedString: self.exerciseLbl.attributedText];
[text addAttribute: NSForegroundColorAttributeName value: [UIColor colorWithRed:(187/255.0) green:(57/255.0) blue:(38/255.0) alpha:1] range: NSMakeRange(0, 2)];
[self.exerciseLbl setAttributedText: text];
但这不适用于 iOS 5.1 及更低版本。那么我怎样才能在 iOS 5 中获得相同的结果。