我想創建一個包含具有不同顏色文本的標籤。與此類似,如何在iOS 5.1及更低版本的UILabel中創建多色文本
我已經在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中實現相同的結果。
使用屬性字符串http://www.cocoanetics.com/2011/01/befriending-core-text/! – rptwsthi