我在ViewController&中找到了tableView
。一个名为toDo
的数组,在TableView中我是一个单元格,在单元格中我得到了textView。
textView是可编辑的(用户可以更改textView中的文本)。
用户更改文本后 - 我希望单元格将其保存到toDo数组,但每当我重新加载数据时,文本都会消失。
这是我试过的:
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell: TableViewCell = tableView.dequeueReusableCellWithIdentifier("cell", forIndexPath:indexPath) as! TableViewCell
cell.textField.text = toDo[indexPath.row]
cell.textField.delegate = self
return cell
}
**我有一个测试按钮,每当我点击它重新加载数据。