//创建,ResultsController可以为nil,即当前VC操作
self.searchController = [[UISearchController alloc] initWithSearchResultsController:[[SearchTableViewController alloc] init]];
self.searchController.searchBar.placeholder =@"在名单里查找";
//searchBar背景颜色
self.searchController.searchBar.barTintColor = RGBA(240, 240, 240, 1);
self.searchController.searchBar.tintColor = [UIColor blackColor];
self.searchController.searchResultsUpdater = self;
//有导航栏的时候,点击搜索框的时候可以不让导航栏消失
self.searchController.hidesNavigationBarDuringPresentation = NO;//禁止向上移动
self.searchController.searchBar.frame = CGRectMake(self.searchController.searchBar.frame.origin.x,
self.searchController.searchBar.frame.origin.y,
self.searchController.searchBar.frame.size.width, 44.0);
self.tableView.tableHeaderView = self.searchController.searchBar;
网友评论