Skip to content
This repository has been archived by the owner on Oct 14, 2024. It is now read-only.

如何设置上面圆角,陛下直角 #67

Open
CoderYLZhang opened this issue May 9, 2017 · 1 comment
Open

如何设置上面圆角,陛下直角 #67

CoderYLZhang opened this issue May 9, 2017 · 1 comment

Comments

@CoderYLZhang
Copy link

CoderYLZhang commented May 9, 2017

https://www.zhihu.com/question/30198825?sort=created
bezierPath这种方法,一旦用了,整个弹窗都消失了只剩背景阴影在

    UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:self.bounds byRoundingCorners:UIRectCornerTopLeft | UIRectCornerTopRight cornerRadii:CGSizeMake(10, 10)];
    CAShapeLayer *maskLayer = [[CAShapeLayer alloc] init];
    maskLayer.frame = self.bounds;
    maskLayer.path = maskPath.CGPath;
    self.layer.mask = maskLayer;
@taitanxiami
Copy link

Try to set mask to nil when views is hidden.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants