Dismiss keyboard on touch anywhere outside UITextField

前端 未结 8 1838
梦毁少年i
梦毁少年i 2020-11-27 17:22

I am developing an iPad app that has a large number of UIViewControllers, UITableViews (with cells with accessoryViews of UIText

8条回答
  •  感情败类
    2020-11-27 17:31

    In Swift 3

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

提交回复
热议问题