0

我在表格的每个单元格中都有文本字段。所以当我调用表格重新加载时,我想清除(无)文本字段文本。

谢谢你。

4

2 回答 2

0

n cellForRow: method where you create cell set text of textField

cell.yourTextField.text = @"";
于 2012-05-24T11:33:01.927 回答
-1

在 cellForRow: 方法中,您将 textField 的单元格集文本创建为 nil:

cell.yourTextField.text = nil;
于 2012-05-24T11:13:45.150 回答