我过去多次使用过以下代码,在一个应用程序中,它仍可编译得很好:
let attrStr = try! NSAttributedString(data: myLabel.data(using: String.Encoding.unicode,allowLossyConversion: true)!, options: [ NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType], documentAttributes: nil)
现在,我已经启动了一个新应用,我收到以下错误:
Cannot convert value of type 'NSAttributedString.DocumentAttributeKey' to expected dictionary key type 'NSAttributedString.DocumentReadingOptionKey'
似乎找不到任何适用于修复此问题的内容,有什么变化吗?