I have grouped 4 CABasicAnimation into CAAnimationGroup. But the problem is that
-(void) animationDidStop:(CAAnimation *)anim finished:(BOOL)flag
is not called for each animation.
CABasicAnimation *anim1;//code of anim1
anim1.deleagte=self;
CABasicAnimation *anim2://code of anim2
anim2.deleagte=self;
CABasicAnimation *anim3;//code of anim3
anim3.deleagte=self;
CABasicAnimation *anim4://code of anim4
anim4.deleagte=self;
CAAnimationGroup *animGrp;//code of animGrp
animGrp.delegate=self;
[imageView.layer addAnimation:animGrp forKey:@""];
Am I doing something wrong or there is different approach to it.
My aim is to change the position of the UIIImageView for every animation.
So, when anim1 ends I want to change Image, but I don't receive a animationDidStop delegate.