1

UITableView 重新排序控件

当我的 UITableView 处于编辑模式时,是否可以摆脱出现的这条白线?

4

1 回答 1

1

我最终找到了解决方案:

通过可见单元格中的子视图将其删除:

-(void)editTableView {
    [self setEditing:YES animated: YES];
    for (UITableViewCell *cell in [self.tableView visibleCells]) {
        for (UIView *control in cell.subviews) {
            if (control.frame.size.width == 1.0f) {
                control.backgroundColor = [UIColor clearColor];
            }
        }
    }
}

为正在显示的任何单元格删除它:

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
    if (self.editing) {
        for (UIView *control in cell.subviews) {
            if (control.frame.size.width == 1.0f) {
                control.backgroundColor = [UIColor clearColor];
            }
        }
    }
}
于 2013-02-03T14:31:04.950 回答