iPhone:沿着曲线绘制对象
美好的一天,朋友们。
有一个任务:沿着曲线(更准确地说,它是一条弧线)绘制重复对象(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
作为 Android
Path
的替代方案,您可以使用 UIBezierPath 或 CGPath。前者是 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 theframe
(it's undefined) and need to move the view by modifying thecenter
instead.