Hide UISearchBar clear text button

前端 未结 15 1748
时光说笑
时光说笑 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条回答
  •  既然无缘
    2020-12-31 05:54

    Swift 5

    Tested on iOS 13

    One liner working for me:

    searchBar.searchTextField.clearButtonMode = .never
    

    You can also set it to .whileEditing to have it displayed when the user is typing and then removed when the search bar loses focus.

提交回复
热议问题