For a method like
(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
if I want to implement it for certain tableViews in my view, and not others, is there a way to return the default implementation? TIA
Yes. Just return super's implementation.
if (tableView == myTableView) {
// create and return your custom header
}
else {
return [super tableView:tableView viewForHeaderInSection:section];
}