ios - Drag UIKeyboard to hide -
this question has answer here:
i wonder how prepare similar functionality skype app, allow user down drag uitableview hide in live mode uikeyboard. have suggestions resolve issue, or maybe have used before of cocopods?
as of ios 7, functionality has been built uiscrollview class
choose whichever of these fits needs best.
scrollview.keyboarddismissmode = uiscrollviewkeyboarddismissmodeinteractive; scrollview.keyboarddismissmode = uiscrollviewkeyboarddismissmodeondrag; if want achieve in older ios version, can't interactive, can use uiscrollviewdelegate method scrollviewwillbegindragging: dismiss keyboard when user starts scrolling.
Comments
Post a Comment