I have my tableview set to hide the keyboard interactively. This works beautifully. The user pulls down on my tableview and when the finger hits the keyboard, it moves down with the finger.
However I have a custom view for text entry that I would like to interactively move as the user drags down.
I tried using UIKeyboardDidChangeFrame
, UIKeyboardWillHide
, and UIKeyboardDidHide
notifications, but they aren't called repeatedly as the keyboard is pulled down.
I can't just use the tableView scroll offset, because it depends on the contact point of the finger.
Any ideas?