我可以将 UISearchController 与故事板一起使用吗?

A T*_*hka 1 uikit uisearchbar ios uistoryboard uisearchcontroller

有没有一种方法UISearchController可以让我使用故事板UISearchBar?我有一个带有导航栏的故事板 UI,其中包含我的搜索栏。如果我能保持这种方式就好了,因为以编程方式设置布局真的很不方便。我知道旧的UISearchDisplayController可以故事板。有没有办法用 UISearchController 做类似的事情?

myl*_*mhz 5

将 a 添加UIView到您的布局。那将是您的UISearchBar. 然后以编程方式实例化 UISearchController,然后将搜索栏添加到容器中:

let searchController = UISearchController(searchResultsController: searchResultsController)
searchBarContainer.addSubview(searchController.searchBar)
Run Code Online (Sandbox Code Playgroud)