gpt4 book ai didi

ios - 如何使用 userdefaults Swift 4 存储和检索表数据

转载 作者:行者123 更新时间:2023-11-30 11:06:16 25 4
gpt4 key购买 nike

我的任务是用户data使用strut方法附加到items数组中并分配给tableView tableData数组。在我的代码中,我在多个地方使用了 tableData 进行一些验证

现在,我的问题是,当我将 background 移动到 foreground 时,我可以看到我的表数据,但如果我从 background 中删除应用程序然后,如果我打开我的应用程序,则会出现 tableView。所以,我需要理解。 tableData 如何存储UserDeafult中,然后检索来加载tableView以避免数据丢失。

// Array declaration
var items = [Item]()
var tableData = [Item]()

public func documentPicker(_ controller: UIDocumentPickerViewController,didPickDocumentsAt urls: [URL]) {

// Here I am getting user selected file url and its name from iCloud.
// I skipped to paste here.

// User picked file data appending into items array
items.append(Item(url: bookurl, title: name))

// Assign items data to tableData
if let data = UserDefaults.standard.data(forKey:"items") {
do {
let itemsUser = try PropertyListDecoder().decode(Array<Item>.self, from: data)
tableData = itemsUser
} catch { print(error) }
}
}

// MARK - TABLE VIEW DELEGATIONS
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return self.tableData.count
}

// TableView data-load
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as! CustomTableViewCell
let item = tableData[indexPath.row]
cell.name_label.text = item.name
}
return cell
}

最佳答案

对于上述场景,UserDefault 应位于选择器委托(delegate)外部。如果我们在 viewDidload 中维护一些逻辑,那么它会很好地工作。

//Within ViewDidLoad
if let data = UserDefaults.standard.data(forKey:"items") {
do {
let itemsUser = try PropertyListDecoder().decode(Array<Item>.self, from: data)
tableData = itemsUser
} catch { print(error) }
}

关于ios - 如何使用 userdefaults Swift 4 存储和检索表数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52686129/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com