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
  • 505
  • 6
  • 20

1 Answers1

0

override

 func textViewShouldBeginEditing(_ textView: UITextView) -> Bool {   
   keyboardController.beginListeningForKeyboard()
 }
shilovk
  • 11,718
  • 17
  • 75
  • 74
Kris
  • 1