How does one close the keyboard?
Currently I use view.endEditing(true) but as soon as the messages view is reloaded the keyboard comes back...
It to be gone until the input is clicked again.
Call resignFirstResponder on the view controller itself
Sent with GitHawk
self.resignFirstResponder()
@nathantannar4 that made the entire input bar go away...
switching it to self.messageInputBar.resignFirstResponder() doesn't work either.
Maybe I misunderstood where you wanted that to be called
I thought you wanted to close the keyboard so it was gone. If you just want it dismissed call resignFirstResponder on the InputTextView in the MessageInputBar
Sent with GitHawk
:) yes that worked perfectly!
Most helpful comment
I thought you wanted to close the keyboard so it was gone. If you just want it dismissed call resignFirstResponder on the InputTextView in the MessageInputBar
Sent with GitHawk