我试图向数组中添加一个值并存储在userdefaults中,但在尝试将新值附加到所提取的值时,我最初遇到了错误。下面是我的代码。

private func putArray(_ value: GMSAutocompletePrediction?, forKey key: String) {
        guard let value = value else {
            return
        }
        let newArray = getArray(forKey: key)?.append(value) // error here

        storage.setValue(NSKeyedArchiver.archivedData(withRootObject: value), forKey: key)
}

private func getArray(forKey key: String) -> [GMSAutocompletePrediction]? {
        guard let data = storage.data(forKey: key) else { return nil}
        return NSKeyedUnarchiver.unarchiveObject(with: data) as? [GMSAutocompletePrediction]
}

以下是我的错误
不能对不可变值使用可变成员:函数调用返回不可变值

最佳答案

问题是getArray(forKey: key)?是不可变的,不能直接附加到它,所以需要

var newArray = getArray(forKey: key) ?? []
newArray.append(value)

关于ios - 将值附加到数据数组并保存在Userdefault swift中,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/58116622/

10-13 04:28