_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 在屏幕上随机移动,但以所需的方式旋转。我应该怎么做才能阻止它在屏幕上移动?