我正在使用带有一些文本显示的自定义操作表。使用 XCode 11.3 我不能使用 NSAttributedString.Key.foreground。以前更新之前可以用,现在没找到解决办法。
let attributedMessageText = NSMutableAttributedString(
string: description,
attributes: [
NSAttributedString.Key.paragraphStyle: paragraphStyle,
NSAttributedString.Key.font: UIFont.systemFont(ofSize: 13.0),
NSAttributedString.Key.foregroundColor: UIColor.red
]
)
如果我想改变背景颜色,它也会变成灰色。也许有人已经面临这个问题?