将 uiimageView 定向到屏幕中心

发布于 2024-11-18 02:24:09 字数 120 浏览 1 评论 0原文

好吧,我有几张计划图像,每次我们打开应用程序时,它们都会在随机位置创建。我想要的是,每次创建计划时,他的鼻子都朝向屏幕中心,我认为我必须计算中心和图像之间的角度,然后进行旋转,但我不确定。你能帮我吗?抱歉我的英语我是法国人:/

Well I have several images of plans that, every time we open the application, are created at a random position. What I want, is that every time a plan is created, his nose is oriented to the center of the screen, I think that I must calculate the angle between the center and the image and then do a rotation, but I'm not sure . Can you help me please ! sorry for my english I'm french :/

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

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

发布评论

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

评论(1

蒲公英的约定 2024-11-25 02:24:09
 myimageview.transform = CGAffineTransformMakeRotation(30 * M_PI / 180.0);
 //this will rotate it by 30 degres. good luck!

要获得所需的角度,您需要进行三角操作。

http://en.wikipedia.org/wiki/Sine

 myimageview.transform = CGAffineTransformMakeRotation(30 * M_PI / 180.0);
 //this will rotate it by 30 degres. good luck!

to get the angle that you need you need to do trig.

http://en.wikipedia.org/wiki/Sine

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