类型的价值' NSAttributedString'没有会员' addAttributes'

时间:2017-10-19 17:00:45

标签: swift nsattributedstring swift4

我检查了documentation,方法就在那里。

当我查看.h文件时,我确实看到了这个功能。我尝试过清理和重建,迁移到Swift 4后仍然出现此错误。

  

类型的价值' NSAttributedString'没有会员' addAttributes'

以下内容:

var options:[NSAttributedString.DocumentReadingOptionKey : Any] = [NSAttributedString.DocumentReadingOptionKey.documentType : NSAttributedString.DocumentType.html]
var attributedString = try NSAttributedString(data: data, options: options, documentAttributes: nil)
let range = (attributedString.string as NSString).range(of: attributedString.string)
attributedString.addAttributes(baseAttributes, range: range) // ERROR!

1 个答案:

答案 0 :(得分:-1)

对于 Google 带来的其他人来说,我错过了 import UIKit