iOS8 Cannot hide cancel button on search bar in UISearchController

后端 未结 9 607
后悔当初
后悔当初 2021-01-01 12:26

My goal is to prevent the cancel button from appearing in a search bar in a UISearchController. I started with Apple\'s Table Search with UISearchController sample code and

9条回答
  •  悲&欢浪女
    2021-01-01 12:34

    Swift:

    The following worked for me, added under viewDidLoad, because I never wanted that button:

    let searchBarStyle = searchBar.value(forKey: "searchField") as? UITextField
    searchBarStyle?.clearButtonMode = .never
    

    Make sure to add the ID for the searchBar in the storyboard.

提交回复
热议问题