对于某些单元格,UITableView在iOS8中的错误位置显示分隔符

时间:2014-09-20 09:37:41

标签: ios objective-c ios8

我们有一个UITableView,它适用于iOS7但是当我在iOS8模拟器中尝试时,我看到大多数单元格的单元格分隔符放置不正确。奇怪的是,有些单元格正确显示了分隔符。

见附图:

UITableView with wrong separator... sometimes!

我以这种方式设置单元格高度:

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return 70.0f;
}

你知道发生了什么吗?谢谢!

编辑:

我在此期间使用的解决方法是禁用分隔符......

    [tableView setSeparatorStyle:UITableViewCellSeparatorStyleNone];

...并在单元格视图中自己绘制...

    UIView* separator = [[UIView alloc] initWithFrame:CGRectMake(20, cellHeight-1, frame.size.width - 40, 1)];
    separator.layer.borderWidth = 1;
    separator.layer.borderColor = [[UIColor grayColor] CGColor];
    [self addSubview:separator];

......但我不想这样做。

1 个答案:

答案 0 :(得分:56)

我遇到了同样的问题,这就是我解决问题的方法:

如果您正在为表格视图使用自定义单元格并且已覆盖layoutSubviews,则需要在方法开头调用它的superview方法:

- (void)layoutSubviews
{
    [super layoutSubviews];
    // Your implementation
}