更改 NSAttributedString 的背景颜色
我只是想知道如何更改 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我想你想要 NSBackgroundColorAttributeName。例如:
I think you want NSBackgroundColorAttributeName. Such as:
对于 Swift:
有用的链接 - 赋予字符串属性的不同方式
For Swift:
Helpful link - Different way to attribute a string
最好的计划实际上是在黑色背景的视图上绘制字符串。
The best plan would really be to draw the string on a view with a black background.
对于斯威夫特 5:
For Swift 5: