对于像
这样的方法(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
如果我想在我的视图中为某些tableView实现它,而不是其他的,是否有办法返回默认实现? TIA
答案 0 :(得分:0)
是。只需返回super的实现。
if (tableView == myTableView) {
// create and return your custom header
}
else {
return [super tableView:tableView viewForHeaderInSection:section];
}