2

I want to use UIModalTransitionStyleFlipHorizontal, but just have it happen a bit quicker.

Is this possible?

barfoon
  • 27,481
  • 26
  • 92
  • 138

1 Answers1

2

Try this class method instead:

[UIView transitionFromView:self.view
                  toView:newView.view
                duration:0.1f
                 options:UIViewAnimationOptionTransitionFlipFromLeft
              completion:nil];

Ps:the options is: UIViewAnimationOptionTransitionFlipFromLeft
not UIViewAnimationTransitionFlipFromLeft

Kjuly
  • 34,476
  • 22
  • 104
  • 118