为了使图像从左到右显示,我将 anchorPoint 设置如下:
myImageView.layer.anchorPoint = CGPointMake(0.0f, 1.0f);
然后对其进行动画处理:
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:1.0];
[UIView setAnimationCurve:UIViewAnimationCurveLinear];
myImageView.transform = CGAffineTransformMakeScale(1.0, 1.0);
[UIView commitAnimations];
动画效果很好,但是通过更改图像的锚点,图像不会出现在 Interface Builder 中设置的位置,当设置锚点时,它会移动很多。
有谁知道是否有一种方法可以设置 anchorPoint 或完成此效果而不更改图像在 Interface Builder 中的位置?
谢谢!