使用UISearchDisplayController时更改节标题标题

时间:2015-05-29 08:11:04

标签: ios objective-c uitableview uisearchdisplaycontroller

我正在使用UISearchDisplayController来搜索表格视图。表视图有两个部分 - 打开和关闭。在numberOfSectionsInTableView我使用if tableView == self.searchDisplayController.searchResultsTableView ,在我使用搜索栏时将部分数量设置为1。但标题仍然是开放的。

有没有办法在搜索时临时更改栏目标题?

1 个答案:

答案 0 :(得分:0)

你试过这个吗?

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
    if (self.searchDisplayController.searchBar.text.length == 0) {
        return @"";
    } else {
        return @"Open";
    }
}