UISearchBar

 

目录

  • 概述
  • UISearchBar

仅仅是搜索条

搜索条关联视图

  • UISearchBar实现搜索结果
  • 更多细节参考UISearchBar相关的Reference

 

概述

 

UISearchBar

仅仅是搜索条

UISearchBarDelegate

搜索条关联视图

UISearchDisplayDelegate

 

UISearchBar实现搜索结果

对输入的判断(UISearchDisplayDelegate)

-(BOOL)searchDisplayController:(UISearchDisplayController *)controller shouldReloadTableForSearchString:(NSString *)searchString

在UITableViewDataSource上的判断

if(tableView == self.searchDisplayController.searchResultsTableView) { //搜索结果中的表格数据 }

 

更多细节参考UISearchBar相关的Reference

 

相关文章:

  • 2022-12-23
  • 2022-02-17
  • 2022-12-23
  • 2022-12-23
  • 2021-07-02
  • 2022-12-23
  • 2022-12-23
  • 2021-09-01
猜你喜欢
  • 2022-03-04
  • 2022-12-23
  • 2022-01-13
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案