0

我需要我的图像视图在每个动画的开头和结尾更改其 .image 。

这是动画:

- (void)performLeft{

    CGPoint point0 = imView.layer.position;
    CGPoint point1 = { point0.x - 4, point0.y };

    CABasicAnimation *anim = [CABasicAnimation animationWithKeyPath:@"position.x"];
    anim.fromValue    = @(point0.x);
    anim.toValue  = @(point1.x);
    anim.duration   = 0.2f;
    anim.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseIn];

    // First we update the model layer's property.
    imView.layer.position = point1;
    // Now we attach the animation.
    [imView.layer  addAnimation:anim forKey:@"position.x"];
}

我知道我可以打电话...

[anim animationDidStop:(CAAnimation *)theAnimation finished:(BOOL)];

但我不知道如何使用动画来更改图像imView?那么如何使用动画来改变.image我的图像视图呢?

谢谢!

4

1 回答 1

2

简短的回答是您不能使用 Core Animation 来更改图像视图的图像。Core Animation 在图层上运行,而不是视图。此外,Core Animation 只创建变化的外观。底层实际上根本没有改变。

我建议使用 UIView 动画而不是 CAAnimation 对象。然后您可以使用您的完成方法来更改图像。

UIImage 动画更容易做,它确实改变了你正在制作动画的图像的属性。

基于 UIImage 动画的代码看起来像这样:

- (void)performLeft
{
  CGFloat center = imView.center;
  center.x = center.x - 4;
  imView.image = startingImage;  //Set your stating image before animation begins
  [UIView animateWithDuration: 0.2
  delay: 0.0
  options: UIViewAnimationOptionCurveEaseIn
  animations: 
  ^{
     imView.center = center;
  }
  completion:
  ^{
  imView.image = endingImage;  //Set the ending image once the animation completes
  }
  ];
}
于 2013-02-14T17:37:30.610 回答