Dismissing keyboard from UISearchBar when the X button is tapped

前端 未结 14 1276
眼角桃花
眼角桃花 2020-12-24 07:42

I\'m using the UISearchBar (but not the SearchDisplayController that\'s typically used in conjunction) and I\'d like to dismiss the keyboard when you hit the \'X\' button.

14条回答
  •  滥情空心
    2020-12-24 08:35

    Credit to Maxhs for original answer : This is swift 2.2 version : Work like charm for me

    if searchBar.text == "" {
                    dispatch_async(dispatch_get_main_queue(), { 
                        self.searchBar.resignFirstResponder()
                    })
                }
    

提交回复
热议问题