I have been struggling with this problem for weeks now and I cannot find an answer or fix. So basically I am making a CABasicAnimation and the problem is that the animationDidStop delegate method does not get called. I am not sure why but hopefully someone knows.

Here is my animation:

CABasicAnimation *theAnimation;
theAnimation = [CABasicAnimation animationWithKeyPath: @"transform.translation.x"];
theAnimation.duration = 54; 
//theAnimation.repeatCount = 6;
theAnimation.autoreverses = YES;
theAnimation.removedOnCompletion = YES; 

theAnimation.fromValue = [NSNumber numberWithFloat: (self.myImageView.frame.size.height / 5) + (self.view.frame.size.height - self.myImageView.center.x)];
theAnimation.toValue = [NSNumber numberWithFloat: 6.0 - (self.myImageView.frame.origin.y + self.myImageView.frame.size.height)];

//[self.myImageView.layer addAnimation:theAnimation forKey: @"animateLayer"];
[theAnimation setValue:@"Animation1" forKey:@"animateLayer"];
[[self.myImageView layer] addAnimation:theAnimation forKey:nil];

Also here is my animationDidStop method:

- (void)animationDidStop:(CABasicAnimation *)theAnimation finished:(BOOL)flag {

NSString* value = [theAnimation valueForKey:@"animateLayer"];
if ([value isEqualToString:@"Animation1"])
{
    [self themethod];
    return;
}


if ([value isEqualToString:@"Animation2"])
{
    [self themethod];
    return;
}

}

If anyone knows why this is happening, please let me know!

Thanks!

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

You need to set delegate to call animationDidStop.

theAnimation.delegate = class (self)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.