gpt4 book ai didi

ios - 是否有相当于 appendBezierPathWithArcWithCenter 的 iOS

转载 作者:可可西里 更新时间:2023-11-01 05:47:54 25 4
gpt4 key购买 nike

我正在尝试在 iOS 中绘制四分之一圆。在 Mac OS 中,您似乎可以使用 appendBezierPathWithArcWithCenter,但这在 iOS 中似乎不起作用。

有谁知道如何在 iOS 中简单地绘制四分之一圆?

谢谢

最佳答案

有两个 iOS 等价物,一个用于 UIBezierPath,一个用于 CGPath:

UIBezierPath 等效

UIBezierPath *path = [UIBezierPath bezierPath];
[path addArcWithCenter:centerPoint
radius:radius
startAngle:startAngle
endAngle:endAngle
clockwise:YES];

CGPath 等效

CGMutablePathRef path = CGPathCreateMutable();
CGPathAddArc(path, NULL,
centerPoint.x, centerPoint.y,
radius,
startAngle,
endAngle,
NO); // clockwise

关于ios - 是否有相当于 appendBezierPathWithArcWithCenter 的 iOS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6704372/

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