I'm implementing a chatting feature, and I'm facing a problem that SendButton in InputBarAccessoryView doesn't click when the keyboard is up. When the keyboard goes down the button is clicked only then. I don't know why.
extension ChatViewController: InputBarAccessoryViewDelegate {
func inputBar(_ inputBar: InputBarAccessoryView, didPressSendButtonWith text: String) {
... not working when keyboard is up ... }
}