Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi I have looked without success for the answer to this. Am trying to flip views on iphone app. Rather than using the usual iOS3 methods I want to use block methods to animate the transition. Can anyone suggest a snippet of code to help please?

share|improve this question

2 Answers

up vote 8 down vote accepted
[UIView animateWithDuration:0.5
                      delay:0.0 
                    options:UIViewAnimationOptionTransitionFlipFromLeft 
                 animations:^{
                                 // Exchange the views here
                                 [view1 removeFromSuperview];
                                 [mySuperview addSubview:view2]; 
                             };
                 completion:NULL];
share|improve this answer
Thanks, got it now! – user531886 Dec 8 '10 at 3:29
1  
UIView's transitionFromView:toView:duration:options:completion might also work well in the above example (swap out the views rather than use subviews). Just remember to set self.view = newController.view in the completion block. – Brad Cupit Jan 18 '11 at 17:39
3  
this doesnt seem to work, my view are swapped immediately without flip – Saurabh Wadhwa Mar 31 '12 at 7:44

I tried the animateWithDuration method suggested above, and it didn't work. I couldn't get it working until I used the following:

[UIView transitionFromView:viewOld 
                    toView:viewNew
                  duration:.75 
                   options:UIViewAnimationOptionTransitionFlipFromLeft | UIViewAnimationCurveEaseIn 
                completion:^(BOOL finished)
                {
                    // cleanup viewOld
                }
 ];
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.