Reputation: 2497
I want to implement a swipe to dismiss keyboard action on a UITextField, but the only way I know how to dismiss the keyboard is to resignFirstResponder. The behaviour I want is like the native messages app or facebook messenger, where if you drag downwards on the screen the keyboard pans with your finger, and can be gradually raised or lowered. Anyone know how this is done?
Upvotes: 0
Views: 217
Reputation: 535989
You want to look at the UIScrollViewKeyboardDismissMode (in particular, the interactive mode).
Upvotes: 3