소스 검색

fix disappearing and reappearing of the message input bar on scroll down in a chat

cyberta 4 년 전
부모
커밋
cce59d47ff
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      deltachat-ios/Chat/ChatViewController.swift

+ 5 - 1
deltachat-ios/Chat/ChatViewController.swift

@@ -169,7 +169,11 @@ class ChatViewController: UITableViewController {
     }
 
     @objc func keyboardDidShow(_ notification: Notification) {
-        isKeyboardShown = true
+        if let keyboardSize = (notification.userInfo?[UIResponder.keyboardFrameEndUserInfoKey] as? NSValue)?.cgRectValue {
+            if keyboardSize.height > tableView.inputAccessoryView?.frame.height ?? 0 {
+                isKeyboardShown = true
+            }
+        }
     }
 
     @objc func keyboardWillShow(_ notification: Notification) {