Dismiss keyboard with swipe gesture

前端 未结 5 1483
清酒与你
清酒与你 2021-02-03 21:55

In Messages.app you can dismiss the keyboard down by scrolling the list view. To be clear, it isn\'t simply responding to a scrollViewDidScroll event. The keyboard

5条回答
  •  自闭症患者
    2021-02-03 22:10

    Since iOS 7, you can use

    scrollView.keyboardDismissMode = .Interactive
    

    From the documentation:

    UIScrollViewKeyboardDismissModeInteractive

    The keyboard follows the dragging touch offscreen, and can be pulled upward again to cancel the dismiss.

提交回复
热议问题