2

Apple 似乎将 iOS6 中的角半径更改为大约 7(之前为 10)。

我的 UITableView 后面有一个视图,它需要与 UITableViewCell 具有相同的角半径。我的应用程序还支持以前的 iOS 版本,因此我必须将视图的角半径调整为当前 UITableview 所具有的半径。有没有办法访问单元格的角半径?

4

1 回答 1

1

@bllubbor - 你可以通过这种方法,希望它能解决你的答案,因为它对我有用..

@interface BackgroundView : UIView
    @end

    @implementation BackgroundView

    + (Class)layerClass
    {
        return [CAShapeLayer class];
    }
    @end

稍后在 cellForRowAtIndexPath 你做这样的事情: -

    static NSString *CellIdentifier = @"CustomCell";
    CustomCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

    CGRect frame = cell.backgroundView.frame;
    cell.backgroundView = [[BackgroundView alloc] initWithFrame:frame];

    CGFloat corner = 20.0f;
    UIBezierPath *path = [UIBezierPath bezierPathWithRoundedRect:cell.backgroundView.bounds byRoundingCorners:UIRectCornerAllCorners cornerRadii:CGSizeMake(corner, corner)];
    CAShapeLayer  *shapeLayer = (CAShapeLayer *)cell.backgroundView.layer;
    shapeLayer.path = path.CGPath;
    shapeLayer.fillColor = cell.textLabel.backgroundColor.CGColor;
    shapeLayer.strokeColor = [UIColor lightGrayColor].CGColor;
    shapeLayer.lineWidth = 1.0f;

    return cell;
于 2013-10-06T05:56:02.293 回答