我想创建一个在左上角和右上角有圆角的 UIView。
为了做到这一点,我想用 CAShapeLayer 屏蔽 UIView。
这是我正在使用的代码:
UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:self.menuContainerView.bounds
byRoundingCorners:UIRectCornerTopLeft | UIRectCornerTopRight
cornerRadii:CGSizeMake(20.0, 20.0)];
CAShapeLayer *maskLayer = [[CAShapeLayer alloc] init];
maskLayer.frame = self.menuContainerView.bounds;
maskLayer.path = maskPath.CGPath;
self.menuContainerView.layer.mask = maskLayer;
但是,当我运行此代码时,掩码似乎无效。有什么想法为什么不呢?