gpt4 book ai didi

ios8 - 将 UISearchController 添加到非 TableView

转载 作者:行者123 更新时间:2023-12-04 15:33:48 25 4
gpt4 key购买 nike

我在 IOS8 中使用新的 UISearchController 时遇到问题。到目前为止,我发现的每个示例都使用搜索栏作为 UITableView 的标题 View 。当搜索栏需要显示在其他地方时,您会怎么做?例如,将搜索栏放在表格之外以防止其滚动?将它与 UICollectionView 之类的东西一起使用怎么样?

我在这里错过了什么吗?这似乎不应该那么复杂。

最佳答案

放置 UISearchBartitleView的导航栏,您可以在滚动 tableview 时阻止它滚动。

self.searchController.hidesNavigationBarDuringPresentation = NO;
self.searchController.searchBar.searchBarStyle = UISearchBarStyleMinimal;

// Include the search bar within the navigation bar.
self.navigationItem.titleView = self.searchController.searchBar;

self.definesPresentationContext = YES;
UISearchController依赖 searchResultsController这应该是管理搜索结果的 View Controller 。
确保 searchResultsController 指向的 View Controller 属性更新基于 UISearchBar 中的文本当 UISearchController活跃。这样您就可以将 UISearchController 与 tableview 或 collectionview 一起使用。

关于ios8 - 将 UISearchController 添加到非 TableView ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26303136/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com