iPhone:沿着曲线绘制对象

发布于 2024-11-29 23:02:37 字数 97 浏览 1 评论 0原文

美好的一天,朋友们。

有一个任务:沿着曲线(更准确地说,它是一条弧线)绘制重复对象(UIImageView 和 UILabel)。

应该使用什么类?

Good day, friends.

There is a task: to draw repeating objects (UIImageView and UILabel) along the curve (if more exactly, it's an arc).

What classes should be used for it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

山色无中 2024-12-06 23:02:37

作为 Android Path 的替代方案,您可以使用 UIBezierPathCGPath。前者是 Objective-C,后者是纯 C。我建议使用 UIBezierPath,因为它更容易使用。

要旋转视图,请使用 UIView 的 transform 属性(参见 此问题了解如何使用它的示例)。但请注意,您需要忽略 frame (它未定义),并且需要通过修改 center 代替。

As an alternative to Android's Path, you can use either UIBezierPath or CGPath. The former is Objective-C, the later pure C. I recommend going with UIBezierPath as it's easier to use.

To rotate a view, use the transform property of UIView (see this question for an example on how to use it). But note that you then need to ignore the frame (it's undefined) and need to move the view by modifying the center instead.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文