Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions HPReorderTableView/HPReorderTableView.m
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,18 @@ - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInte
}
}

- (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section
{
if ([_realDataSource respondsToSelector:@selector(tableView:titleForFooterInSection:)])
{
return [_realDataSource tableView:tableView titleForFooterInSection:section];
}
else
{
return nil;
}
}

#pragma mark - Data Source Forwarding

- (void)dealloc
Expand Down