在我的场景中,我需要将array值存储到UserDefault中并检索相同的数据。当用户再次打开特定的viewcontroller时,检索数据需要加载到同一数组中。我不知道如何以正确的方式将数组输出值下方的storeretrieve转换为UserDefaults。请帮我解决一下这个。

将数据存储到阵列

func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
        self.tableView.deselectRow(at: indexPath, animated: true)
        let item = searching ? filteredData[indexPath.row] : membersData[indexPath.row]

        if let cell = tableView.cellForRow(at: indexPath) {
            if cell.accessoryType == .checkmark {
                cell.accessoryType = .none

                // UnCheckmark cell JSON data Remove from array
                self.selectedRows = selectedRows.filter{$0 != indexPath.row}
                self.selectedValues.remove(item) // Here Data Removing Into Array

            } else {
                cell.accessoryType = .checkmark

                // Checkmark selected data Insert into array
                self.selectedRows.append(indexPath.row) //select
                self.selectedValues.insert(item) // Here Data Storing Into Array
            }
        }
    }


将数组数据保存到UserDefault中

@IBAction func doneAction(_ sender: Any) {

        // Selected Row Index Store
        UserDefaults.standard.set(selectedRows, forKey: "SelectedIndexes")
        // Here need to store Selected values
        self.dismiss(animated: true, completion: nil)
    }


将UserDefault存储的数据重新加载到同一数组中(viewDidLoad)

    self.selectedRows = UserDefaults.standard.value(forKey: "SelectedIndexes") as? [Int] ?? []
// Here how to retrieve SelectionValue and Load into `selectedValues` array


可编码

// MARK: - ListData
struct ListData: Codable, Hashable {
    let userid: String?
    let firstname, designation: String?
    let profileimage: String?
    var isSelected = false

    private enum CodingKeys : String, CodingKey {
        case userid, firstname, designation, profileimage
    }
}


数组数据


  选择值:[ListData(userid:Optional(“ 1”),名字:
  可选(“ abc”),名称:可选(“英语”),配置文件图片:
  可选(“ url”)),ListData(用户ID:
  可选(“ 2”),名字:可选(“ def”),名称:
  可选(“数字”),个人资料图片:
  Optional(“ url”))]选择行:[0,1]

最佳答案

如果您不建议您将其存储在UserDefault中。

var selectedValues: [Any] = [["id": 1, "name": "Adam"]]
selectedValues.append(["id": 2, "name": "Eve"])
UserDefaults.standard.set(selectedValues, forKey: "SelectedValues")
let result = UserDefaults.standard.array(forKey: "SelectedValues") ?? []

print(result)


Output : [{
  id = 1;
  name = Adam;
}, {
  id = 2;
  name = Eve;
}]

关于ios - 使用UserDefault快速存储和检索数组数据,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/58725069/

10-16 11:01
查看更多