嗨大家我试图从这张图片上的黑点旋转UIImageview。 现在发生的事情是中心没有改变 我试过这样的。
Image.Center = CGPointmake(37.3,150);
当我调用此设置时,图像只会在屏幕上移动。
谢谢!
答案 0 :(得分:3)
您需要添加以下代码: -
imageView.layer.anchorPoint = CGPointMake(0.5,0.5);
[UIView beginAnimations:@"rotate" context:nil];
imageView.transform = CGAffineTransformMakeRotation(angle);
[UIView commitAnimations];