I converted my app recently and I keep getting the error
\"Cannot convert value of type \'[String : Any]\' to expected argument type \'[NSAttributedS
Its expecting NSAttributedStringKey(NSAttributedStringKey.font) and you are sending String(NSAttributedStringKey.font.rawValue).
So please replace NSAttributedStringKey.font.rawValue with NSAttributedStringKey.font like below :
let attributes = [NSAttributedStringKey.font: UIFont(name: "Helvetica-Bold", size: 15.0)!, NSAttributedStringKey.foregroundColor: UIColor.white]