How to make keyboard dismiss when I press out of searchbar on Swift?

try this : self.mySearchController.searchBar.endEditing(true) replace mySearchController with your created controller name.. If you did not create it programmatically but instead you just dragged a search bar from library then IBoutlet your searchable to your class and reference it as: self.mySearchBar.endEditing(true)

tech