The delegate is my view controller.
I am setting the delegate via:
CABasicAnimation theAnimation;
theAnimation.delegate = self;
Then I configure the animation and add the animation to the layer, and I verified it is animating correctly on the device.
However, I cannot get this delegate method to be called:
-(void)animationDidStop:(CAAnimation *)anim finished:(BOOL)flag {
NSLog(@"animationDidStop called.");
}
Any ideas?
Also, I could not find anywhere the protocol my view controller adopts for the CAAnimation delegate methods. I thought all delegate objects had to adopt a protocol?
Thank you!