Text Exiting In a UITableView
I have a problem. I have a UITableView, and for one of the cells I have an editable UITextField. For the other fields I am populating labels using a UIPickerView/UIDateView.
When editing the text field, the keyboard pops-up, and I have a "Done" key that will resignFirstResponder to make it go away. All works fine!
The issue is, should a user not press the "Done" key and simply select another table row, the UIPickerView pops-up behind the keyboard, causing a potentially confusing situation (i.e. the user can't see the picker).
So, my question is how can I call resignFirstResponder on a UITextField that exists as a subview of a table cell? or is there another way to force the end of editing?
Thanks for any suggestions
|