Animating images using CAAnimation?

Check the "Animating a View" section in aboutobjects.com/tutorials.html.

You asked how to animate, and @7KV7 told you exactly where you can see sample code for animation. How is this not the "expected answer"? – Allan W May 12 at 16:55 In the question I have specifically asked for Core Animation... But the link contain animation using UIAnimation thats why it is not the expected answer for me... – Chandan Shetty SP May 12 at 17:28.

CAKeyframeAnimation *animationSequence = CAKeyframeAnimation animationWithKeyPath: @"contents"; animationSequence. CalculationMode = kCAAnimationLinear; animationSequence. Autoreverses = YES; animationSequence.

Duration = kDefaultAnimationDuration; animationSequence. RepeatCount = HUGE_VALF; NSMutableArray *animationSequenceArray = NSMutableArray alloc init; for (UIImage *image in self. AnimationImages) { animationSequenceArray addObject:(id)image.

CGImage; } animationSequence. Values = animationSequenceArray; animationSequenceArray release; self. Layer addAnimation:animationSequence forKey:@"contents".

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions