How can I programmatically force a search in the UISearchBar?

后端 未结 8 1301
遥遥无期
遥遥无期 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:01

    This worked - Swift 4

       searchBar.text="Amber"
       self.searchBar(self.searchBar, textDidChange: "Amber")
    

提交回复
热议问题