美文网首页
tableview的group类型消除header view

tableview的group类型消除header view

作者: 克拉克定律 | 来源:发表于2017-04-28 11:20 被阅读22次

    在创建tableview之前一定要先加这一行代码

    [self.view addSubview:[[UIView alloc] init]];
    

    然后就是设置header和footer的高度了

    - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
        return 0;
    }
    - (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{
        return CONVER_VALUE(12.0f);
    }
    

    相关文章

      网友评论

          本文标题:tableview的group类型消除header view

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