Dismissing keyboard from UISearchBar when the X button is tapped

前端 未结 14 1215
眼角桃花
眼角桃花 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条回答
  •  -上瘾入骨i
    2020-12-24 08:36

    You can resignFirstResponder on the click of cancel Button as.

    - (void)searchBarTextDidEndEditing:(UISearchBar *)searchBar
    
    {
    
        SearchBar.showsCancelButton =NO;
    
    }
    
    
    - (void)searchBarCancelButtonClicked:(UISearchBar *)searchBar
    {
    
        [SearchBar resignFirstResponder];
    
    
    }
    

提交回复
热议问题