蒙面的UITablewViewCell和删除按钮

时间:2016-07-14 12:54:58

标签: ios uitableview

我在UITableViewCell中使用圆角

                CAShapeLayer *shape         = [[CAShapeLayer alloc] init];
                shape.path                  = [UIBezierPath bezierPathWithRoundedRect:topCell.bounds
                                                        cornerRadius:cornerRadius].CGPath;
                topCell.layer.mask          = shape;
                topCell.layer.masksToBounds = YES;

并且一切都很好,但是当我使用标准的滑动删除功能时,DELETE按钮不可见 - 因为应用了蒙版,当然。

任何提示如何解决?不知何故只限制面具到细胞?但奇怪的是,细胞向左移动,面具也应该移动?

0 个答案:

没有答案