更改 NSAttributedString 的背景颜色

发布于 2024-10-26 11:40:16 字数 86 浏览 0 评论 0原文

我只是想知道如何更改 NSAttributedString 的背景颜色,我可以看到背景一直是白色的,但我想将其设为黑色。

这可能吗?非常感谢!

I just wanted to know how could i change the background color of an NSAttributedString, i can see the background being white all the time, but i want to make it black.

Is that possible?? Many thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

疯了 2024-11-02 11:40:16

我想你想要 NSBackgroundColorAttributeName。例如:

[mutableAttributedString addAttribute:NSBackgroundColorAttributeName value:[UIColor yellowColor] range:selectedRange];

I think you want NSBackgroundColorAttributeName. Such as:

[mutableAttributedString addAttribute:NSBackgroundColorAttributeName value:[UIColor yellowColor] range:selectedRange];
不可一世的女人 2024-11-02 11:40:16

对于 Swift:

attributedString.addAttribute(NSBackgroundColorAttributeName, value: yourColor, range: NSMakeRange(0, tillLocation))

有用的链接 - 赋予字符串属性的不同方式

For Swift:

attributedString.addAttribute(NSBackgroundColorAttributeName, value: yourColor, range: NSMakeRange(0, tillLocation))

Helpful link - Different way to attribute a string

乖乖 2024-11-02 11:40:16

最好的计划实际上是在黑色背景的视图上绘制字符串。

The best plan would really be to draw the string on a view with a black background.

薄凉少年不暖心 2024-11-02 11:40:16

对于斯威夫特 5:

someMutableAttributedString.addAttribute(NSAttributedString.Key.backgroundColor, value: <#your color#>, range: <#your range#>)

For Swift 5:

someMutableAttributedString.addAttribute(NSAttributedString.Key.backgroundColor, value: <#your color#>, range: <#your range#>)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文