如何在 UIImageview 上创建中心点

发布于 2024-12-17 06:03:29 字数 240 浏览 0 评论 0原文

在此处输入图像描述

大家好,我正在尝试从该图像上的黑点旋转 UIImageview。 现在发生的事情是中心没有改变 我已经尝试过这样的。

Image.Center = CGPointmake(37.3,150);

当我调用这个集合时,图像只是在屏幕上移动。

谢谢!

enter image description here

Hi Guys I am trying to rotate a UIImageview from the Black dot on this image.
what is happening now is that the center is not changing
I have tried like this.

Image.Center = CGPointmake(37.3,150);

when I am calling this set the image just moves across the screen.

thanks!

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

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

发布评论

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

评论(1

冷情妓 2024-12-24 06:03:29

您需要添加此代码:-

    imageView.layer.anchorPoint = CGPointMake(0.5,0.5);
[UIView beginAnimations:@"rotate" context:nil];

imageView.transform = CGAffineTransformMakeRotation(angle);
[UIView commitAnimations];

You need to add this code:-

    imageView.layer.anchorPoint = CGPointMake(0.5,0.5);
[UIView beginAnimations:@"rotate" context:nil];

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