如何获取不包括控制点的 UIBezierPath 边界
NSBezierPath
提供了一个名为 bounds
的 API,它返回没有控制点的边界。 UIBezierPath
中是否有任何等效的 API 可以返回不包括控制点的路径边界?
NSBezierPath
provides an API called bounds
that returns bounds without control points.
Is there any equivalent API in UIBezierPath
to return the path bounds excluding control points?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我得到了解决方案,这很简单。
CGPath
提供了这样一个调用:CGPathGetPathBoundingBox
。我们总是可以从UIBezierPath
获取CGPath
。I got the solution, which was simple.
CGPath
provides such a call:CGPathGetPathBoundingBox
. We can always getCGPath
fromUIBezierPath
.UIBezierPath
具有bounds
属性。 https://developer.apple.com/reference/uikit/uibezierpath/1624350-边界UIBezierPath
hasbounds
property. https://developer.apple.com/reference/uikit/uibezierpath/1624350-bounds