美文网首页
iOS 设置多组tableviewcell的footerView

iOS 设置多组tableviewcell的footerView

作者: Riven2018 | 来源:发表于2018-04-10 18:20 被阅读0次

    - (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

          本文链接:https://www.haomeiwen.com/subject/gxcwzttx.html