本文介绍了我如何在 swift 3 的 nsuserdefaults 中存储选定的 tableview 行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个 tableview,其中的行数和每行添加按钮,从中我选择一些然后选择的行按钮,我想在 nsuserdefaults 中存储 swift 3.
I have one tableview in which numbers of rows and in each rows add button and from that i am selecting some and then that selected buttons of rows i want to store in nsuserdefaults in swift 3.
推荐答案
保存所有已经选中的行,可以这样解决:
Saving all the rows that have been selected, can be solved like this:
var selectedRows: [Int] = []
override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
self.selectedRows.append(indexPath.row)
UserDefaults.standard.set(selectedRows, forKey: "selectedRows")
}
稍后使用
if let selectedRows = UserDefaults.standard.array(forKey: "selectedRows") as? [Int] {
// Do what you want with the selectedRows
}
如果你想取回所有 selectedRows
if you want to get all of the selectedRows back
这篇关于我如何在 swift 3 的 nsuserdefaults 中存储选定的 tableview 行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!