将 UIImage 或 UIView 旋转到特定角度,而不是角度量

发布于 2024-09-10 04:21:00 字数 434 浏览 3 评论 0原文

适用于 iOS 的 Objective-C。

如何将图像或视图旋转到特定角度。 我尝试了下面的两种方法,但都旋转了角度的数量,而不是角度。 基本上我想调用一个方法来旋转到 90',然后说再次调用 180',并且图像/视图在 180' 处完成,而不是将它们两者相加(270'),这就是如果我使用会发生的情况以下任一方法。

#define degreesToRadians(degrees) (M_PI * degrees / 180.0)

myImage.transform = CGAffineTransformMakeRotation(degreesToRadians(90));

myImage.transform = CGAffineTransformRotate(myImage.transform, degreesToRadians(90));

非常感谢!

Objective-C for iOS.

How do I rotate an image or view TO a particular angle.
I have tried the two methods below, but both rotate the AMOUNT of angle, not TO the angle.
Basically I would like to call a method to rotate to 90' and then say call again of 180', and the image/view to finish at 180', NOT an addition of them both (270') which is what happens if I use either of the methods below.

#define degreesToRadians(degrees) (M_PI * degrees / 180.0)

myImage.transform = CGAffineTransformMakeRotation(degreesToRadians(90));

myImage.transform = CGAffineTransformRotate(myImage.transform, degreesToRadians(90));

Many thanks!

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

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

发布评论

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

评论(2

海之角 2024-09-17 04:21:00

重置...

.transform = CGAffineTransformIdentity

在其他变换之前

Reset by

.transform = CGAffineTransformIdentity

before the other transforms...

南渊 2024-09-17 04:21:00

如果您不需要制作动画,ohho 的答案可能会很有用。
我发现这个技巧很有用:

[UIView animateWithDuration:0.2 animations:^{
            self.compassImgView.transform = CGAffineTransformRotate(CGAffineTransformIdentity, radians);
        }];

ohho's answer can be useful if you haven't to do animation.
I found useful this trick:

[UIView animateWithDuration:0.2 animations:^{
            self.compassImgView.transform = CGAffineTransformRotate(CGAffineTransformIdentity, radians);
        }];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文