如何旋转 UIImageView

发布于 2024-11-15 01:22:21 字数 90 浏览 3 评论 0原文

我有一个 UIImageView,它是星星的图像。问题是我希望星星在移动时旋转。如何旋转 UIImageView 使其看起来像旋转 3 秒。我想让它旋转 720 度。

I have a UIImageView that is an image of the star. The problem is I want the star to rotate when I move it. How can I rotate a UIImageView to make it look like it is spinning for 3 seconds. I want it to spin 720 degrees.

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

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

发布评论

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

评论(3

哽咽笑 2024-11-22 01:22:21

对于非常简单的方法,您可以使用

imageView.transform = CGAffineTransformMakeRotation(radianRotation);

其中 radianRotation 是浮点数,例如 4*pi 表示 720 度。您可以使用基本动画并根据需要更改旋转。

但是,如果您想要更复杂的解决方案,那么我强烈建议您查看此相关帖子的答案:如何使用固定点旋转 UIIMageVIew?

另外,请参阅屏幕右侧链接的无数相关帖子。许多人都有你需要的所有代码(除非绕圈两次)。

For a very simple approach, you can use

imageView.transform = CGAffineTransformMakeRotation(radianRotation);

where radianRotation is a float, e.g. 4*pi for 720 degrees. You can play with basic animations and changing the rotation however you like.

However, if you want a more sophisticated solution, then I highly recommend you look at the answers to this related post: how to rotate UIIMageVIew with fix point?

Also, see the myriad related posts linked on the right hand side of your screen. Many have all the code you need (barring going around in a circle twice).

对不⑦ 2024-11-22 01:22:21

您还可以使用

[imageView layer].transform = CATransform3DMakeRotation(variables);

You can also use

[imageView layer].transform = CATransform3DMakeRotation(variables);
掀纱窥君容 2024-11-22 01:22:21

对于您的商品,除了 PengOne 的答案之外,您还可以使用 math.h 中提供的 M_PI、M_PI_2、M_PI_4 常量。

For your commodity, additionally to PengOne's answer you can use M_PI, M_PI_2, M_PI_4 constants that are available in math.h.

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