无法将'[String:Any]'类型的值转换为预期的参数类型'[NSAttributedStringKey:Any]'

问题描述 投票:0回答:1

将我的代码从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))
        }
    }
ios swift xcode facebook objectmapper
1个回答
3
投票

好吧,你用[String:Any]启动了你的boldAttributes变量,你的错误告诉你这不是预期的变量类型。因此,使用[NSAttributedString.Key : Any]启动变量并删除.rawValue应该可以解决您的问题。

您的属性字典将如下所示:

let boldAttributes: [NSAttributedString.Key : Any] = [
    .font: LocalConstants.termsBoldFont,
    .link: linkType.url
]
© www.soinside.com 2019 - 2024. All rights reserved.