在iOS 11中,Apple提供了新的搜索栏,但在iOS 11.2.2中,当两个 View Controller 都具有searchController时,开发人员会出现push\pop动画错误。
苹果公司在"file"应用程序中展示了他们的愿景。
有人知道怎么做吗?

编辑#1

动画损坏的问题。
Broken UISearchBar animation embedded in NavigationItem

最佳答案

swift - NavigationItem iOS 11 Apple中的UISearchController-LMLPHP

您可以在ViewController中添加一些代码行-viewDid在导航栏中为搜索栏加载一些代码行

self.navigationController?.navigationBar.prefersLargeTitles = true
self.navigationItem.largeTitleDisplayMode = .automatic
let search = UISearchController(searchResultsController: nil) // Declare the searchController
self.navigationItem.searchController = search

关于swift - NavigationItem iOS 11 Apple中的UISearchController,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48278159/

10-12 14:44