0

为了使图像从左到右显示,我将 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 中的位置?

谢谢!

4

1 回答 1

0

在 ViewDidLoad 中:只需初始化您的 ImageView 框架:

[ImageView setFrame:CGRectMake(900, 0, 69, 39)];

并在下面编写代码:

    [UIView animateWithDuration:0.5 
                          delay:0.1 
                        options:UIViewAnimationOptionTransitionCurlDown
                     animations:^{
                         //animation code
                         ImageView.frame = CGRectMake(0, 0, 320, 345);

                     } completion:^(BOOL finished) {
                         //completion code

                     }];
于 2012-10-06T04:15:24.917 回答