3

I have implemented the UIKeyInput protocol method - (void)deleteBackward but when the code is running on an iPad and I press the delete button on the keyboard it does not execute the method.

Is this protocol disabled on ipad?

mttrb
  • 8,297
  • 3
  • 35
  • 57
christina
  • 31
  • 2

1 Answers1

0

Just ran into this issue as well. Looks like iPad doesn't allow UIViews to simply implement UIKeyInput, you must implement UITextInput in order for a custom view to make the keyboard appear on iPad OS.

Emma K Alexandra
  • 464
  • 3
  • 15