我无法在动态表格视图中快速获取文本字段值

时间:2020-09-29 14:21:07

标签: ios swift uitableview tableview cell

因此,我根据用户输入创建了这个部分。 例如,我输入了2个部分,我用1-8个数字填充,并且工作正常:

enter image description here

但是当我输入4个部分并用1-16个数字填充时,但是看一下第1部分,值更改了,我不知道为什么。这是图片:

enter image description here

这是我的功能代码:

func getAllValue() {
    for sectionIndex in 0...finalSectionNumber - 1 {
        print("section index: \(sectionIndex)")
        print("final txt field: \(finalSectionNumber)")
        for rowIndex in 0...tableView.numberOfRows(inSection: sectionIndex) - 1 {
            let indexPath = IndexPath(row: rowIndex, section: sectionIndex)
            let cells = tableView.cellForRow(at: indexPath) as? CellOutlet
            print("row index: \(rowIndex)")
            print(cells?.txtFieldSpecNumb.text ?? 0)
        }
    }
}

我在这里想念什么? 有人可以帮忙吗?

提前谢谢

2 个答案:

答案 0 :(得分:3)

请记住,单元已重用。一个单元格可以从排成一排跳到另一排。但更重要的是:这种方法是完全错误的:

        let cells = tableView.cellForRow(at: indexPath) as? CellOutlet
        print("row index: \(rowIndex)")
        print(cells?.txtFieldSpecNumb.text ?? 0)

从不永不(我提到“从不”吗?)将 view 视为 model 。单元格(即文本字段)不是数据,而是数据。如果您想知道数据是什么,请查看数据。请咨询数据模型,而不是表格视图。 (当然,您一直将用户键入的所有内容保留在数据模型的文本字段中,对吗?)

答案 1 :(得分:2)

单元格被重用,当您滚动并且单元格的可见性超出屏幕区域时,它们将被重用。

您必须必须采用临时数组来保存值并使它们与单元格索引同步。在您创建的数组的cellForRowAt索引路径方法中设置这些值。