After updating to Swift 4 I am getting an error on this code
attributes["NSFont"] = font
attributes["NSColor"] = UIColor(red: 0.0, green: 0.0, blue: 0.0, alpha: 1)
Cannot subscript a value of type '[NSAttributedStringKey : Any]' with an index of type 'String'
I was able to fix the first line by replacing ["NSFont"]
with NSAttributedStringKey.font
but I am not sure how to fix the second one.
For Swift 3.3,
NSForegroundColorAttributeName
,NSFontAttributeName
likeFor Swift 4.0+