iOS 设置多组tableviewcell的footerView
2018-04-10 本文已影响0人
Riven2018
- (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;
}