0

我以footerview编程方式为每个部分添加如下。我可以看到footerview.

但是,当我在表格视图的底部或顶部向上或向下滚动时,会footerview覆盖在tableviewcells.

我怎么能禁用它?

- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
{
    if(adminOrderElements[section].expanded && [adminOrderElements[section].notes length]>0)
    {
        return 60;
    } else {
        return 0;
    }

    return 60;
}

- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
{
    UIView *footer = [[UIView alloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, 60)];
    footer.backgroundColor = [UIColor clearColor];

    UILabel *lbl = [[UILabel alloc]initWithFrame:footer.frame];
    lbl.backgroundColor = [UIColor clearColor];
    lbl.text = @"Your Text";
    lbl.textAlignment = NSTextAlignmentCenter;
    [footer addSubview:lbl];

    return footer;
}

滚动前

在此处输入图像描述

滚动后

在此处输入图像描述

4

1 回答 1

2

如果我正确理解您的问题,您只需UITableViewStyleUITableViewStyleGrouped. 根据文档,对于使用分组样式的表视图,部分页眉和页脚不会浮动

于 2017-08-01T07:19:22.060 回答