1

I am implementing the JSQMessagesViewController library for messaging. I have small issue with the keyboard, when the textfield ist edited, the keyboard covers the textfield, and i should slide it down to see what did i write. They have a class JSQMessagesKeyboardController which is handling the keyboard..

I tried this solution from here: iPhone Keyboard Covers UITextField but nothing changed.

Does someone had the same problem, would you share possible solutions? enter image description here

Community
  • 1
  • 1
Monicka
  • 485
  • 5
  • 20

1 Answers1

0

override

 func textViewShouldBeginEditing(_ textView: UITextView) -> Bool {   
   keyboardController.beginListeningForKeyboard()
 }
shilovk
  • 9,510
  • 16
  • 66
  • 68
Kris
  • 1