MessageInputBar
MessageInputBar copied to clipboard
Keyboard handlers within message kit
I have a chat view embedded with in my app hooked up to firebase. Works great. Thank you.
The issue I am having is the client wants the input for the chat to be about mid screen.
I have hidden the input bar accessory because there seems to be no way to embed it in the mid screen view with the chat. It that is possible let me know.
Currently when the keyboard appears for my text field it covers the text field.
Is there anyway to turn off the keyboard handlers in MessageKit. I have my own and the are working it just the ones in MessageKit are taking precedence.
The attached is a mock of the issue. Actual app under NDA... but the its the same issue

Hey @LincolnDickerson it is simple to hide keyboard
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
if self.messageInputBar.inputTextView.becomeFirstResponder(){
self.messageInputBar.inputTextView.resignFirstResponder()
}
}
if you want hide keyboardHandler then self.messageInputBar.inputTextView.isHidden = true