我正在使用以下方法在Swift 3中将textView.typingAttributes前景色设置为红色。
textView.typingAttributes[NSForegroundColorAttributeName] = UIColor.red
现在,我已将其显示错误迁移到Swift 4,我尝试如下进行操作,但仍显示错误。什么是正确的设置方式?
textView.typingAttributes[NSAttributedStringKey.foregroundColor] = UIColor.red
最佳答案
试试这个:
textView.typingAttributes[NSAttributedStringKey.foregroundColor.rawValue] =
UIColor.red
关于ios - 在Swift 4中设置textView.typingAttributes前景色,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45390754/