keep keyboard open when deleting/inserting UITableView's cell (iphone)
- by Jonathan
I have a login form using a UITableView. One of the cells has a UISwitch which when on will delete the row above it and when off reinsert it.
But the first cell automatically has the keyboard up when the cell is created (basically when the view loads) (by using [cell becomeFirstResponder];)
Inserting/deleting any of the cells means that the keyboard animates out and then animates back in.
I'd like to remove this so the keyboard stays up while rows are deleted/inserted.