I have a custom UITableViewCell, which has a text field in it, the cells can be removed, then I got a problem when the table is in editing mode and the cell also got first responder for the text field, in this case it just crashes say that I cannot delete a cell which does not resign first responder.
I tried to resignFirstResponder for the text field, when the cell is removed, but since the deletion happens immediately and the resignFirstResponder has an animation, so it still does not work.
Does anyone have similar issue and happen to find a solution?