没有分隔符的空单元格的页脚

时间:2014-08-22 14:44:38

标签: ios uitableview interface-builder

在特殊情况下,我想显示一个带有文本页脚的空单元格。我已将单元格高度设置为1以隐藏单元格内容,这看起来非常好。然而,在页脚上方仍然有一个分隔符,我正在努力隐藏。

enter image description here

我试过这个以删除特定单元格的那条线而没有运气:

-(UITableViewCell *) tableView:(UITableView *) tableView cellForRowAtIndexPath:(NSIndexPath *) indexPath {
    // static tableviewcell defined in storyboard, just grab it and lets modify
    UITableViewCell *cell = [super tableView:tableView cellForRowAtIndexPath:indexPath];
    if ([indexPath section] == 0 && [indexPath row] == 0) {
        // if the cell I want to modify
        cell.separatorInset = UIEdgeInsetsMake(0.f, 0.f, 0.f, cell.bounds.size.width);
    }

    return cell;
}

然而,这似乎不起作用。

我似乎也搞乱了tableViews分隔符属性并将其设置为NONE。但是,当我的服务打开时,表格中会有一些行显示需要有一个分隔符。

想法?

1 个答案:

答案 0 :(得分:0)

分隔符不是基于单元格,而是来自表格视图。

tableView.separatorColor = [UIColor clearColor];

应该制作技巧