gpt4 book ai didi

ios - 中间透明的UIView

转载 作者:塔克拉玛干 更新时间:2023-11-01 19:08:00 26 4
gpt4 key购买 nike

enter image description here

是否可以创建这样一个UIView填充颜色,但中间是透明的?

我正在考虑在这里创建 5 UIView。只是想知道是否可以仅使用一个 UIView

来完成

最佳答案

来自 Duncan C ,我知道我应该从哪里开始,然后我找到了 CALayer with transparent hole in it .

UIBezierPath *overlayPath = [UIBezierPath bezierPathWithRect:self.view.bounds];
UIBezierPath *transparentPath = [UIBezierPath bezierPathWithRect:CGRectMake(60, 120, 200, 200)];
[overlayPath appendPath:transparentPath];
[overlayPath setUsesEvenOddFillRule:YES];

CAShapeLayer *fillLayer = [CAShapeLayer layer];
fillLayer.path = overlayPath.CGPath;
fillLayer.fillRule = kCAFillRuleEvenOdd;
fillLayer.fillColor = [UIColor colorWithRed:255/255.0 green:20/255.0 blue:147/255.0 alpha:1].CGColor;

[self.view.layer addSublayer:fillLayer];

利用2个UIBezierPath,然后填充我想要的颜色(我的问题是粉红色),然后添加为子层

关于ios - 中间透明的UIView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24196784/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com