如何在UIImageview上创建中心点

时间:2011-11-21 12:15:52

标签: iphone objective-c uiimageview

enter image description here

嗨大家我试图从这张图片上的黑点旋转UIImageview。 现在发生的事情是中心没有改变 我试过这样的。

Image.Center = CGPointmake(37.3,150);

当我调用此设置时,图像只会在屏幕上移动。

谢谢!

1 个答案:

答案 0 :(得分:3)

您需要添加以下代码: -

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

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