更改NSAttributedString上的背景颜色

alb*_*osh 12 iphone nsattributedstring ios

我只是想知道如何更改NSAttributedString的背景颜色,我可以看到背景一直是白色,但我想让它变黑.

那可能吗??非常感谢!

Den*_*Vog 30

我想你想要NSBackgroundColorAttributeName.如:

[mutableAttributedString addAttribute:NSBackgroundColorAttributeName value:[UIColor yellowColor] range:selectedRange];
Run Code Online (Sandbox Code Playgroud)