我正在将搜索实现到基于tableView的应用程序中。我目前已使用以下代码在Storyboard中的UIView(已放置在tableHeaderView中)中实现了该代码:
resultsTableController = SearchResultsTableViewController()
resultsTableController.tableView.delegate = self
searchController = UISearchController(searchResultsController: resultsTableController)
searchController.searchResultsUpdater = self
tableViewSearchBarView.addSubview(searchController.searchBar)
我目前正在获得这个生涩的动画:https://imgur.com/a/7h0J15e
我可以创建单击和取消搜索栏时将发生的自定义动画,并以某种方式覆盖此动画吗?我不能使用普通的
navigationItem.searchController = searchController
因为我需要在自定义tableHeaderView中而不是在NavigationBar中拥有Title。
我该怎么做呢?我只是想要一个普通的动画,就像股票Apple Notes App中的一样。