【发布时间】:2014-04-30 12:59:04
【问题描述】:
我继承了另一个开发者代码,但是没看懂下面的代码:
-(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;
}
如果我删除它会发生什么吗? 好像没必要
【问题讨论】:
标签: uitableview delegates