将我的代码从swift
3转换为4并获取错误无法将类型'[String:Any]'的值转换为预期的参数类型'[NSAttributedStringKey:Any]'
在线
attributedString.addAttributes(boldAttributes, range: NSRange(location: index, length: linkType.keyPhrase.count))
突出显示粗体属性
这是完整的代码
private func addLink(_ linkType: AttributedURLType, attributedString: NSMutableAttributedString) {
let indeces = attributedString.string.indices(of: linkType.keyPhrase)
let boldAttributes: [String : Any] = [
NSAttributedStringKey.font.rawValue: LocalConstants.termsBoldFont,
NSAttributedStringKey.link.rawValue: linkType.url
]
for index in indeces {
attributedString.addAttributes(boldAttributes, range: NSRange(location: index, length: linkType.keyPhrase.count))
}
}
好吧,你用[String:Any]启动了你的boldAttributes
变量,你的错误告诉你这不是预期的变量类型。因此,使用[NSAttributedString.Key : Any]
启动变量并删除.rawValue应该可以解决您的问题。
您的属性字典将如下所示:
let boldAttributes: [NSAttributedString.Key : Any] = [
.font: LocalConstants.termsBoldFont,
.link: linkType.url
]