通过点击按钮来旋转 UIImageView,每种方式?

发布于 2024-11-08 06:08:45 字数 158 浏览 0 评论 0原文

我一直在寻找解决方案。

我想通过点击来旋转 ImageView (每一步 45 度) 我希望它能够双向旋转,所以如果我向右点击两步,我希望它能够向后点击两步,

有人可以帮助我提供一些代码、教程、参考或文档吗...?

预先非常感谢你们,你们永远是最棒的!

I've been searching for a solution to this..

I want to rotate a ImageView (45 degrees with each step) with the tap of a
I want it to rotate each way, so if I tap two steps right, I want it to be able to tap two steps back a.s.o.

Can anyone help me with som code, tutorial, reference or documentation...?

Thank you so much in advance, you guys are always the best!

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

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

发布评论

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

评论(1

海的爱人是光 2024-11-15 06:08:45

您可以使用 CGA仿射变换旋转

CGAffineTransform transform = imageView.transform;

// Rotate the view 45 degrees (the actual function takes radians)
transform = CGAffineTransformRotate(transform, (M_PI / 4));
imageView.transform = transform;

You can use CGAffineTransformRotate

CGAffineTransform transform = imageView.transform;

// Rotate the view 45 degrees (the actual function takes radians)
transform = CGAffineTransformRotate(transform, (M_PI / 4));
imageView.transform = transform;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文