iOS 设置多组tableviewcell的footerView高度

- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{

    return 0.f;

}

这个方法返回0的时候是没有用的~然后设置成0.01的时候才起作用,并且设置成0.01f也没有用~


这个是不对的,还需要在返回底部视图代理里添加viewcai生效;

- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section{

    UIView *headView = [[UIView alloc]init];

    return headView;

}

你可能感兴趣的:(iOS 设置多组tableviewcell的footerView高度)