Hide UISearchBar clear text button

前端 未结 15 1754
时光说笑
时光说笑 2020-12-31 05:31

I would like to know how to hide or not display the UISearchBar cross that appears in the textField fo the UISearchBar

I have

15条回答
  •  旧时难觅i
    2020-12-31 06:15

    Converting Soto_iGhost's answer to Swift 4:

    func searchBarTextDidBeginEditing(_ searchBar: UISearchBar) {
    
        let textField: UITextField = searchBar.value(forKey: "_searchField") as! UITextField
        textField.clearButtonMode = .never
    }
    

    If you have an outlet of UISearchBar the you can write above code anywhere in your class.

提交回复
热议问题