我想每次单击按钮传输数据时,将数据发送到另一个视图控制器中的单元格1、2、3等的表视图中。我可以将标签中的文本发送到只转移到第一个单元格的tableView中。但是当我返回时,我希望该单元格保留文本,然后将新标签文本保存在第二个单元格中,然后继续进行下去。谢谢 这是tableView所在的第二个视图控制器的代码。现在,它仅适用于第一个单元。
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return data.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
var cell = tableView.dequeueReusableCell(withIdentifier: "cell")!
cell.textLabel?.text = data[indexPath.row]
return cell
}