0

_plank是一个通过interfacebuilder初始化的UIImageView。

我正在使用以下内容:

[UIView animateWithDuration:1 delay:0.0 options:UIViewAnimationOptionCurveLinear
 animations:^{
     _plank.layer.anchorPoint = CGPointMake(0.5, 0.5);
     _plank.transform = CGAffineTransformRotate(_plank.transform, 1);
 }
 completion:^(BOOL finished) {

 }];

最终发生的是 UIImageView 在屏幕上随机移动,但以所需的方式旋转。我应该怎么做才能阻止它在屏幕上移动?

4

1 回答 1

1

我不得不关闭自动布局才能工作。感谢@David Rönnqvist

于 2013-09-18T08:39:35.827 回答