标签: iphone uitextfield
我在表中每个单元格都有文本字段。当我调用表重新加载时我想清除(无)文本字段文本。
谢谢你。
答案 0 :(得分:0)
n cellForRow:您创建textField
cell.yourTextField.text = @"";
答案 1 :(得分:-1)
in cellForRow:将textField的单元格集文本创建为nil:
cell.yourTextField.text = nil;