不必要的uitableview委托方法

时间:2014-04-30 12:59:04

标签: uitableview delegates

我继承了另一个开发人员代码,但没有理解以下代码:

-(CGFloat)tableView:(UITableView*)tableView heightForFooterInSection:(NSInteger)section
{
    return 0.0;
}

-(UIView*)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
    return nil;
}

-(UIView*)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
{
    return nil;
}

如果我删除它会发生什么事吗? 似乎没必要

2 个答案:

答案 0 :(得分:0)

如果你不需要它们,只需将它们评论出来。你会没事的。

答案 1 :(得分:0)

这些方法只是UITablieView"外观"的一部分。的表。它是在TableView中的一个部分下显示的字符串。您可以将它们评论或完全删除,这不会影响您的计划。