我正在使用UISearchDisplayController
来搜索表格视图。表视图有两个部分 - 打开和关闭。在numberOfSectionsInTableView
我使用if ( tableView == self.searchDisplayController.searchResultsTableView
),在我使用搜索栏时将部分数量设置为1。但标题仍然是开放的。
有没有办法在搜索时临时更改栏目标题?
答案 0 :(得分:0)
你试过这个吗?
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
if (self.searchDisplayController.searchBar.text.length == 0) {
return @"";
} else {
return @"Open";
}
}