How can I programmatically force a search in the UISearchBar?

后端 未结 8 1227
遥遥无期
遥遥无期 2021-02-05 05:15

How can I force the UISearchBar to automatically start a new search (like pressing the Search button)? Is there an easy way to achieve this?

8条回答
  •  心在旅途
    2021-02-05 06:08

    let searchBar: UISearchBar = /* The Searchbar */
    searchBar.delegate?.searchBar?(searchBar, textDidChange: "")
    searchBar.text = ""
    

提交回复
热议问题