[Solved] I want to flip my screen [closed]


You can use UIViewAnimation that flip your screen.

[UIView transitionWithView:self.navigationController.view
                          duration:0.5
                           options:UIViewAnimationOptionTransitionFlipFromLeft
                        animations:^{

                     [self.navigationController popViewControllerAnimated:NO]; //for go back to previous view controller 
                   //otherwise set your view controller if you want go to next screen
                        }
                        completion:NULL];

For flip from right set this option UIViewAnimationOptionTransitionFlipFromRight

solved I want to flip my screen [closed]