I use UITableView. If I change text in text field and then scroll down this text field is clearing. Why text in hidden fields while I scrolling UITableView is clearing?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
That's because the table cells will get reused by cellAtRowInIndexPath as soon as it the user scrolls the cell off the screen. To preserve the content of the table cell you need to have the content stored into an NSArray in the table controller as soon as the user finishes editing text. If the user scroll back to your original row, read the text from the NSArray and set it back into the textField. |
|||||||||
|