I have an accessory view on my keyboard that uses a next and previous button to hop between UITextFields. When the next or previous button is pressed, an IBAction is called which finds the textfield to switch to and then performs
[nextTextField becomeFirstResponder];
Usually this works fine but once in a while the keyboard drops partially and then comes back up. I'm sure this is because becoming first responder dismisses the keyboard and then summons it back up again, and sometimes this happens slowly enough that the keyboard has visually begun dismissing before it is called back.
So how can I stop the keyboard from trying to dismiss?