15

我正在尝试将子视图添加到 UITableViewCell 并且我正在处理的设计要求这个特定的子视图(图像)需要大于实际的 UITableViewCell 并因此部分重叠其兄弟姐妹。

所以我设置了我的表格单元格,生成了我的图像并将其添加到单元格的 contentView 中:

// rowHeight for the UITableView is 45.0f

UIImage *image = [self createCellThumbnail: someImage];
UIImageView *thumbView = [[UIImageView alloc] initWithFrame: CGRectMake(150, -5, 55,55)];
thumbView.transform = CGAffineTransformMakeRotation(0.1f);
thumbView.image = image;

cell.clipsToBounds = NO;
cell.contentView.clipsToBounds = NO;

[cell.contentView addSubview: thumbView];

虽然图像将“溢出”到其下方的单元格中,但图像的顶部始终被剪裁,如下所示:

图像

有谁知道我正在尝试做的事情是否可以通过当前的方法来实现?

或者我应该想办法在绘制完所有单元格之后将这些图像绘制到 UITableView 上(它是一个不可滚动的 tableview,所以它可以工作并且相当容易)。

更新:

还尝试添加以下内容,但无济于事:

cell.opaque = NO;
cell.contentView.opaque = NO;

cell.clearsContextBeforeDrawing = NO;
cell.contentView.clearsContextBeforeDrawing = NO;

cell.clipsToBounds = NO;    
cell.contentView.clipsToBounds = NO;
4

4 回答 4

15

我似乎 tableView 从下到上呈现其单元格,因此一个单元格上方的单元格与该一个单元格重叠。为避免这种情况,您必须将backgroundColor所有单元格设置为,+[UIColor clearColor]这样您就不会看到那些重叠问题。

但是设置backgroundColor清除-tableView:cellForRowAtIndexPath:没有任何意义。UIKit 在绘制之前对单元格做了很多事情,所以它会重置backgroundColor单元格的属性。

我们需要做的是将 设置backgroundColor为稍后的状态。幸运的是-[UITableViewDelegate tableView:willDisplayCell:forRowAtIndexPath:],我们可以这样实现:

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
    cell.backgroundColor = [UIColor clearColor];
}

现在我们在backgroundColor绘制单元格之前设置它,结果证明这是有效的。

于 2010-05-16T09:35:42.497 回答
4

更新:

所以我做了更多的实验,下面的解决方案仍然可以工作,而不必将单元格的背景设置为透明,这涉及移动被覆盖单元格的 z 顺序。这适用于突出显示和选择另一个单元格(通过相关回调),如果两个单元格的背景是不同的颜色。解决方案如下(如果didHighlightdidSelect方法对你来说不重要,你可以忽略它们):

(请注意,“覆盖行”是我们试图使其内容保持可见的行,在我的情况下,它的内容会稍微进入上面的行,它正在剪裁它)

-(void)tableView:(UITableView *)tableView didHighlightRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (indexPath.section == 0 && indexPath.row == ROW_ABOVE_COVERED_ROW)
    {
        NSIndexPath * rowbelow = [NSIndexPath indexPathForRow:indexPath.row+1 inSection:indexPath.section];
        UITableViewCell* cell = [tableView cellForRowAtIndexPath:rowbelow];
        [cell.superview bringSubviewToFront:cell];
    }
}

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (indexPath.section == 0 && indexPath.row == ROW_ABOVE_COVERED_ROW)
    {
        NSIndexPath * rowbelow = [NSIndexPath indexPathForRow:indexPath.row+1 inSection:indexPath.section];
        UITableViewCell* cell = [tableView cellForRowAtIndexPath:rowbelow];
        [cell.superview bringSubviewToFront:cell];
    }
}

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
    if (indexPath.section == 0 && indexPath.row == COVERED_ROW)
    {
        [cell.superview bringSubviewToFront:cell];
        cell.contentView.superview.clipsToBounds = NO;
    }
}

注意:您还应该将内容的背景颜色设置为清除,否则它将采用单元格其余部分的 bgcolor,因此当您设法将内容带到覆盖单元格的前面时,它将采用背景用它着色并在另一个单元格中留下一个令人讨厌的块(在我的情况下,我唯一的内容是detailTextLabeltextLabel):

// in cellForRowAtIndexPath:
[cell setBackgroundColor:[UIColor redColor]]; //using red for debug
cell.detailTextLabel.backgroundColor = [UIColor clearColor];
cell.textLabel.backgroundColor = [UIColor clearColor];

我希望这对其他尝试此操作的人有所帮助....

原来的:

对我来说,解决方案是使用:

self.contentView.superview.clipsToBounds = NO;

我的单元格已经是透明的,但我的内容仍然被剪辑。在我的情况下,我使用了一个自定义单元格,它将其内容向上移动到layoutSubviews. 因此layoutSubviews,对于我的自定义单元格,如下所示:

-(void)layoutSubviews
{
    [super layoutSubviews];
    self.contentView.frame = CGRectOffset(self.contentView.frame, 0, -11);
    self.contentView.superview.clipsToBounds = NO;
}

我不知道如果上面的单元格不透明,或者如果单元格在按下时突出显示,这是否会起作用,这是否会掩盖我的内容。

但是,我不需要viewWillDisplayCell在回调方法中再次使单元格透明- 正常执行cellForRowAtIndexPath就足够了

于 2013-11-12T11:52:00.683 回答
2

我遇到了这个问题,我确保我的自定义 tableviewcell 的主背景检查了剪辑子视图,它解决了这个问题。这是从 xib 加载的自定义 tableview 单元格。不完全相同但类似的情况。

于 2012-09-08T09:15:13.517 回答
1

实际上我昨天正好相反,我创建了一个自定义表格单元格,由于某种原因,我得到了一个我不想拥有的溢出。我的解决方案是将以下代码添加到我的视图控制器类中:

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

当它与表格单元格的高度匹配时,没有重叠;当它太小时有重叠。请注意,我的行为非常迅速,所以我不确定这样做是否是个好主意。

于 2010-05-16T08:26:51.897 回答