I have a UITableView
with two Custom Cells
. One of the Custom Cells
contains a UITextField
.
I'm having problems with hiding the keyboard when the return button is pressed.
- (IBAction)textFieldDoneEditing:(id)sender {
[sender resignFirstResponder];
}
Normally I would use this, but it get's never called. I connected it with the Editing Did End
Event.
Is is because I use a Custom Cell
?