Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
テーブルの各セルにテキストフィールドがあります。テーブルのリロードを呼び出すたびに、テキストフィールドのテキストをクリア(nil)したいです。
前もって感謝します。
n cellForRow: textField のセル セット テキストを作成するメソッド
cell.yourTextField.text = @"";
cellForRow: セルを作成するメソッドで、textField のテキストを nil に設定します。
cell.yourTextField.text = nil;