我有一个UISearchController
,带有一个单独的结果控制器。我正在使用Algolia Instant Search搜索项目。但是,我在将searchControllers的searchBar连接到Algolia searchBarControllers的searchBar时遇到问题。在以下方法中;
func updateSearchResults(for searchController: UISearchController)
基本上我需要做的是
func updateSearchResults(for searchController: UISearchController) {
if searchController.isActive {
searchBarController.searchBar = searchController.searchBar
}
}
由于以下原因,该方法不起作用;
无法分配给属性:“ searchBar”是一个“ let”常量