gpt4 book ai didi

ios - 如何只用笔画画圆

转载 作者:行者123 更新时间:2023-11-29 03:47:10 24 4
gpt4 key购买 nike

我只想用描边画圆,下面的代码画得很好,但它填满了圆。

我不想让它被填满。请帮助我

    self.circleView = [[UIView alloc] initWithFrame:CGRectMake(10,20,20,20)];
circleView.alpha = 0.5;
self.circleView.layer.cornerRadius = 50;
self.circleView.backgroundColor = [UIColor whiteColor];

最佳答案

改变

self.circleView.backgroundColor = [UIColor whiteColor];

self.circleView.backgroundColor = [UIColor clearColor];

并为边框(描边)添加

self.circleView.layer.borderColor = [[UIColor redColor] CGColor];
self.circleView.layer.borderWidth = 1;

关于ios - 如何只用笔画画圆,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17610596/

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