Animating images using CAAnimation
Is it possible to implement animating sequence of images using CAAnimation? And i dont want to use UIImageView... I need Something similar to UIImageView where we can set imageView.animationImages and calling startAnimation... but using CAAnimation CAKeyframeAnimation *animationSequence = [CAKeyframeAnimation animationWithKeyPath: @"contents"]; animationSequence.calculationMode = kCAAnimationLinear; animationSequence.autoreverses = YES; animationSequence.duration = kDefaultAnimationDuration; animationSequence.repeatCount = HUGE_VALF; NSMutableArray *animationSequenceArray = [[NSMutableArray