是否有与appendBezierPathWithArcWithCenter等效的iOS
我正在尝试在 iOS 中画四分之一圆。在Mac OS中,似乎你可以使用appendBezierPathWithArcWithCenter,但这似乎在iOS中不起作用。
有谁知道如何在iOS中简单地画四分之一圆?
谢谢
I'm trying to draw a quarter circle in iOS. In Mac OS, it seems you can use appendBezierPathWithArcWithCenter but this doesn't seem to work in iOS.
Does anyone know how to simply draw a quarter circle in iOS?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有两种 iOS 等效项,一种用于
UIBezierPath
,另一种用于CGPath
:UIBezierPath
等效项CGPath
等效项There are two iOS equivalents, one for
UIBezierPath
and one forCGPath
:UIBezierPath
equivalentCGPath
equivalent