Dismiss keyboard with swipe gesture

前端 未结 5 1423
清酒与你
清酒与你 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:17

    Without tableview - yes it not a swipe but it doesn't the trick

    override func touchesBegan(_ touches: Set, with event: UIEvent?) {
        view.endEditing(true)
    }
    

提交回复
热议问题