IOS:旋转 uiimageview [英] IOS: rotate an uiimageview

查看:17
本文介绍了IOS:旋转 uiimageview的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在我的应用程序中,我有一个图像视图,它的名称是箭头,我以这种方式将其旋转 180 度:

in my app I have an imageview, its name is arrow and I rotate it of 180 degrees in this way:

arrow.transform = CGAffineTransformMakeRotation(M_PI);

它工作正常,但现在我希望这个图像视图返回到原始位置;我应该设置什么值才能获得它?

it work fine, but now I want that this imageview return in the original position; what's the value taht I should set to obtain it?

推荐答案

要让它回到原来的位置,只需这样做:

To make it return to it's original position, just do this:

arrow.transform = CGAffineTransformMakeRotation(0);

以度为单位,0 弧度就是 0 度,所以它应该回到原来的位置.

In degrees, 0 radians is 0 degrees, so it should return to its original position.

这篇关于IOS:旋转 uiimageview的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆