我在UITableViewCell中使用圆角
CAShapeLayer *shape = [[CAShapeLayer alloc] init];
shape.path = [UIBezierPath bezierPathWithRoundedRect:topCell.bounds
cornerRadius:cornerRadius].CGPath;
topCell.layer.mask = shape;
topCell.layer.masksToBounds = YES;
并且一切都很好,但是当我使用标准的滑动删除功能时,DELETE按钮不可见 - 因为应用了蒙版,当然。
任何提示如何解决?不知何故只限制面具到细胞?但奇怪的是,细胞向左移动,面具也应该移动?