我正在使用TTTAttributedLabel并需要设置背景颜色。我可以像这样设置文字颜色。
[mutableAttributedString addAttribute:NSForegroundColorAttributeName
value:color
range:range];
self.lblContent.attributedText = mutableAttributedString;
但它不适合背景颜色。
[mutableAttributedString addAttribute:NSBackgroundColorAttributeName
value:color
range:range];
self.lblContent.attributedText = mutableAttributedString;
我可能知道出了什么问题吗?
答案 0 :(得分:0)
您应该使用kTTTBackgroundFillColorAttributeName
。有关该常量和其他几个特定于TTTAttributedLabel.h
的属性常量的详细信息,请参阅TTTAttributedLabel
。