diff --git a/HPReorderTableView/HPReorderTableView.m b/HPReorderTableView/HPReorderTableView.m index 168cf65..e517d7c 100644 --- a/HPReorderTableView/HPReorderTableView.m +++ b/HPReorderTableView/HPReorderTableView.m @@ -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