Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to animate an image like bouncing.I am able to bounce it forward but I am not able to push it back. I am using this code:

[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:2.0f];
hair.transform = CGAffineTransformMakeScale(3.0, 3.0);
[UIView commitAnimations];

Please help me out ..I am struct at this point and not able to solve this problem.Please help me.

share|improve this question

2 Answers

Use these few line of code to get animate an image like bouncing.

 imgView.transform = CGAffineTransformScale(CGAffineTransformIdentity, 0.001, 0.001);

 //imgView is your UIImageView where you set an image 

[self.view addSubview:imgView];

[UIView animateWithDuration:0.3/1.5 animations:^{
    imgView.transform = CGAffineTransformScale(CGAffineTransformIdentity, 1.1, 1.1);
} completion:^(BOOL finished) {
[UIView animateWithDuration:0.3/2 animations:^{
    imgView.transform = CGAffineTransformScale(CGAffineTransformIdentity, 0.9, 0.9);
} completion:^(BOOL finished) {
    [UIView animateWithDuration:0.3/2 animations:^{
        imgView.transform = CGAffineTransformIdentity;                            
    }];
}];
}];

Thanks

share|improve this answer
1  
This solved my problem.. thanks... – Rahul Gupta Nov 6 '12 at 6:31
1  
@Sunil, yes it works exactly as per my expectations. – Girish Dec 12 '12 at 9:18

Please note that from UIView reference:

Use of this method is discouraged in iPhone OS 4.0 and later. You should use the block-based animation methods instead.

So in your case you might want to implement something like:

[UIView animateWithDuration:2.0 animations:^(void) {
    hair.transform = CGAffineTransformMakeScale(2.0, 2.0);
} completion:^(BOOL finished) {
    if(finished){
        [UIView animateWithDuration:2.0 animations:^(void) {
            hair.transform = CGAffineTransformMakeScale(0.5, 0.5);
        }];
    }
}]; 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.