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?
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?
Just ran into this issue as well. Looks like iPad doesn't allow
UIViews to simply implementUIKeyInput, you must implementUITextInputin order for a custom view to make the keyboard appear on iPad OS.