Reputation: 1316
When a control becomes the First Responder, normally the keyboard slides in from the bottom. How can I change that behavior and make it slide in from the left or the right instead? It makes much more sense for the particular UI that I'm working on.
Thanks
Upvotes: 1
Views: 222
Reputation: 108149
You could try to move the keyboard frame intercepting the UIKeyboardWillShowNotification
event.
For retrieving the keyboard frame refer to this answer or this other one.
Upvotes: 3