I would like to know how to hide or not display the UISearchBar cross that appears in the textField fo the UISearchBar
UISearchBar
textField
I have
Swift 3 solution :
extension UISearchBar{ var textField : UITextField{ return self.value(forKey: "_searchField") as! UITextField } }
Usage :
searchBar.textField.clearButtonMode = .never