In my UITableView I have only a single cell, with a UITextField in it. The setup is identical to the change phone name table view on the iPhone with iOS 5. The problem is, whenever the user drags the cell up so that it moves out of view, and then it falls back down again, the text field resigns its first responder status because the cell is being reloaded. How can I keep this from happening, given that the table view only has one cell?

有帮助吗?

解决方案

Final solution ended up being disabling scrolling for the table view- this way the cell is never recycled and the keyboard is never dismissed.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top