How can I do a horizontal display of two kinds. Please see image

There are ViewController = VC1 and two kinds, view1 = "A", view2 = "B". Open "A" to make a horizontal flip and go to "B".

How to solve a problem? Please see the image.

enter image description here

+4
source share
1 answer
[UIView transitionFromView:view1 toView:view2 duration:1.0 options: UIViewAnimationOptionTransitionFlipFromLeft completion: ^(BOOL inFinished) { //do any post animation actions here }]; 
+7
source

All Articles