Already asked Question

but,in that i'm not clear about currentFrame anyone please explain as brief as possible.

i want to animate 10 images within 2.0 seconds

NSArray * imageArray  = [[NSArray alloc] initWithObjects:[UIImage imageNamed:@"1.png"], 
                        [UIImage imageNamed:@"2.png"],
                        [UIImage imageNamed:@"3.png"],
                        [UIImage imageNamed:@"4.png"],
                        [UIImage imageNamed:@"5.png"],
                        [UIImage imageNamed:@"6.png"],
                        [UIImage imageNamed:@"7.png"],
                        [UIImage imageNamed:@"8.png"],
                        [UIImage imageNamed:@"9.png"],
                        [UIImage imageNamed:@"10.png"],

                        nil];
ryuJump = [[UIImageView alloc] initWithFrame:CGRectMake(116, 130, 150, 130)];
ryuJump.animationImages = imageArray;
ryuJump.animationDuration = 2.0;
ryuJump.contentMode = UIViewContentModeBottomLeft;
[self.view addSubview:ryuJump];
[ryuJump startAnimating];

if i'm click on stop button for stop animation [ryuJump stopAnimating];

i want to get current image to show .

Thank You

link|improve this question

64% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.