iOS view圆角设置同时又不影响子视图超出父视图部分显示

UIBezierPath*maskPath=[UIBezierPathbezierPathWithRoundedRect:self.boundsbyRoundingCor... UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:self.bounds byRoundingCorners:UIRectCornerAllCorners cornerRadii:CGSizeMake(radius_noClips, radius_noClips)];
CAShapeLayer *maskLayer = [[CAShapeLayer alloc] init];
maskLayer.frame = self.bounds;
maskLayer.path = maskPath.CGPath;
self.layer.mask = maskLayer;

把view用绘图画圆角,但是view-badge超出view的部分无法正常显示。虽然能用coreGraphic解决对image绘制圆角,但是能否有其他方法设置view圆角同时又不影响子视图超出部分显示?
他——奶-奶的,原来用cornerRaduis不设置clipsToBounds就能实现。那么蒙版mas在ios到底是什么意思呢
展开
 我来答
烂漫老子翻腾1492
2017-06-21 · TA获得超过2446个赞
知道小有建树答主
回答量:3726
采纳率:0%
帮助的人:813万
展开全部
视图之间有个属性:

@property(nonatomic) BOOL clipsToBounds; // When YES, content and subviews are clipped to the bounds of the view. Default is NO.
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式