UIKeyboard will change frame with interactive keyboard dismiss, not called continuously
Asked Answered
D

2

16

I am trying to use the UITableView.keyboardDismissMode = UIScrollViewKeyboardDismissMode.Interactive, to be able to drag my keyboard up and down. However I can't find any way to track the keyboard frame to update my tableView frame and messaging view. I am simply trying to replicate the standard iMessage behaviour. Given the name, I would have thought that UIKeyboardWillChangeFrameNotification would have been perfect for tracking the keyboard frame changes, but it only notifies when the gesture ends and the keyboard animates up or down.

Dugger answered 17/7, 2015 at 10:49 Comment(2)
FYI: openradar.me/14847817Colorable
any one find solution ?Br
W
2

I'm not sure if this will work but you could try to track the drag progress via the panGesture property on UIScrollView in your tableView. It wouldn't be a direct tracking of the keyboard frame, but if you know the keyboard's height and the progress/offset of the pan, you might be able to math your way around the problem.

Weed answered 10/5, 2019 at 21:47 Comment(0)
R
-3

The best approach for interactive dismissal is to use the "UIKeyboardDidShowNotification" and "UIKeyboardWillHideNotification" system notifications. When the selector is called you update the table's bottom inset. NOT the constraints. Updating the inset will give you a beautiful smooth keyboard dismissal experience.

Ragged answered 26/8, 2015 at 11:37 Comment(1)
This doesn't update and follow the interaction of the keyboard.Evert

© 2022 - 2024 — McMap. All rights reserved.