Frage

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

Is this possible?

War es hilfreich?

Lösung

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

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top