baxatob
9 years agoCommunity Hero
iPad / iPhone on-screen keyboard
What is the native method to remove on-screen touch keyboard from the screen?
Currently I use touching the "Dismiss" key on the keyboard, but it always causes the warning: "The control is disabled, but the action will be performed."
I have found the following workaround to dismiss the keyboard from the screen. Use resignFirstResponder method to the textview where you have used the Keys:
YourTextview.resignFirstResponder()
Here is the very useful resource regarding iOS keyboard management.