gpt4 book ai didi

ios - Swift:如何在按下按钮时遍历所有 tableView 行

转载 作者:行者123 更新时间:2023-11-28 10:14:48 25 4
gpt4 key购买 nike

我创建了一个静态 tableView 并想将每个 tableViewCell(所有单元格都是不同的自定义 tableViewCells)的数据保存到 CoreData。如何在按下按钮时遍历所有 TableViewCells?我没有使用 Storyboard,所以我没有 IBOutlets。

编辑:抱歉,也许我应该说明我的问题。请参阅下面的代码。我有 3 个 CustomCell。 FirstCustomCell 包括一个 Textfield,SecondCustomCell 一个 UIPickerView 和 ThirdCustomCell 一个 UIDatePicker。 Controller 还包括一个 saveButton()。如果我按下按钮,我想从 TextField、UIPickerView 和 UIDatePicker 获取输入。

//TableViewController
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
switch indexPath.row {
case 0:
return tableView.dequeueReusableCell(withIdentifier: cellId1) as! FirstCustomCell //includes a UITextField
case 1:
return tableView.dequeueReusableCell(withIdentifier: cellId2) as! SecondCustomCell //includes a UIPickerView
case 2:
return tableView.dequeueReusableCell(withIdentifier: cellId3) as! ThirdCustomCell //includes a UIDatePicker
default:
return UITableViewCell(style: .default, reuseIdentifier: nil)
}
}

如何在我的 TableViewController 的 saveButton() 上访问来自 TextField、UIPickerView 和 UIDatePicker 的输入?

最佳答案

您不应该在单元格中存储数据。你应该有一个模型对象来保存来自单元格的数据,并将你的数据安装到单元格中。然后,如果用户编辑该数据,您应该收集所做的编辑并将其应用到您的模型。

然后您可以干净、轻松地将您的模型持久化到 Core data。

现在您使用的是静态 TableView ,因此您可能能够摆脱所使用的方法,但这并不是说这是一种好方法 - 它绝对不是。

对于普通的表格 View ,单元格的数量多于屏幕无法容纳的单元格,表格 View 会回收单元格并在用户滚动浏览它们时重新使用它们。当单元格滚出屏幕时,其字段中的设置将被丢弃。

关于ios - Swift:如何在按下按钮时遍历所有 tableView 行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42660368/

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