6

我试图让我的角被包含它UITextView的分组的圆角掩盖。UITableViewCell这是当前单元格的屏幕截图

分组 UITableViewCell 内的 UITextView

这是我用来防止角落与单元格边框重叠的一些代码。我都试过了

cell.contentView.layer.masksToBounds = YES;
cell.layer.masksToBounds = YES;  //tried this as a test, still doesn't work
detailTextView.clipsToBounds = YES;
[cell.contentView addSubview:detailTextView];

cell.layer.masksToBounds = YES;
cell.contentView.layer.masksToBounds = YES;
detailTextView.clipsToBounds = YES;
[cell addSubview:detailTextView];

这显然不起作用,我错过了什么?

4

2 回答 2

0

我也遇到了同样的问题

不同之处在于我使用的是普通样式,并且我正在尝试使每个单元格都带有圆角。最后,我做到了,这是我的方法:

1.把这段代码放在你自定义tableViewCell的awakeFromNib方法中

    [cell.layer setMasksToBounds:YES];
    [cell.layer setCornerRadius:5.0];

2. 将您自定义的TableViewCell 的contentview 的背景颜色设置为白色,然后将您的tableView 的背景颜色设置为清除颜色。就这样。

于 2015-01-06T11:37:34.060 回答
0

我很确定你不能用这种方式掩盖角落。单元格backgroundView是分组的图像,UITableView因此没有掩蔽感。

解决这个问题的一个可能方法是自己绕过角落。这有点棘手,因为您只想圆顶单元格的顶角和底部单元格的底角。幸运的是,@lomanf 在这里发布了一个很好的解决任意圆角的方法:在 UIView 中圆两个角。使用他的MTDContextCreateRoundedMask方法,我们可以实现我们的目标。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    // Other cell instantiation

    // First cell in section
    if (indexPath.row == 0) {
        [self roundTopOrBottomCornersOfCell:cell top:YES];       
    }
    // Last cell in section
    else if (indexPath.row == tableView.numberOfRowsInSection:indexPath.section-1) {
        [self roundTopOrBottomCornersOfCell:cell top:NO];
    }
}

// Modified from the second part of @lomanf's Solution 1
- (void)roundTopOrBottomCornersOfCell:(UITableViewCell*)cell top:(BOOL)top {
        // Set constant radius
        CGFloat radius = 5.0;

        // Create the mask image you need calling @lomanf's function
        UIImage* mask;
        if (top) {
            mask = MTDContextCreateRoundedMask(self.view.bounds, radius, radius, 0.0, 0.0);
        }
        else {
            mask = MTDContextCreateRoundedMask(self.view.bounds, 0.0, 0.0, radius, radius);
        }

        // Create a new layer that will work as a mask
        CALayer* layerMask = [CALayer layer];            
        layerMask.frame = cell.bounds;

        // Put the mask image as content of the layer
        layerMask.contents = (id)mask.CGImage;

        // Set the mask layer as mask of the view layer
        cell.layer.mask = layerMask;
}        
于 2013-09-06T16:30:01.770 回答