Advertisement
Guest User

Untitled

a guest
Sep 3rd, 2015
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. private func showCustomKeyboard() {
  2. textView.inputView = customKeyboardView
  3. textView.reloadInputViews()
  4. }
  5.  
  6. private func showDefaultKeyboard() {
  7. textView.inputView = nil
  8. textView.reloadInputViews()
  9. }
  10.  
  11. textView.inputView.resignFirstResponder()
  12. textView.inputView.becomeFirstResponder()
  13. textView.inputView = customKeyboardView
  14. textView.reloadInputViews()
  15.  
  16. textView?.inputView.resignFirstResponder() // dismiss keyboard
  17. textView?.inputView.becomeFirstResponder() // show keyboard
  18. textView?.inputView = customKeyboardView // reassign new keyboard
  19. textView?.reloadInputViews() // reload keyboard
  20.  
  21. textView?.inputView.resignFirstResponder() // dismiss keyboard
  22. textView?.inputView = customKeyboardView // reassign new keyboard
  23. textView?.reloadInputViews() // reload keyboard
  24. textView?.inputView.becomeFirstResponder() // show keyboard
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement