1

我知道有一种简单的方法来实现它,但是你如何在 iOS 4 之前UIViewAnimationOptionTransitionFlipFromLeft做类似的事情(即翻转),例如在 .UIViewiPad

4

1 回答 1

6
[UIView beginAnimations: @"flipOverCard1" context: nil];
[UIView setAnimationDuration: 0.5f];
[UIView setAnimationTransition: UIViewAnimationTransitionFlipFromLeft forView: card1 cache: YES];

// Stuff to do while transitioning

[UIView commitAnimations];
于 2010-08-24T00:25:26.200 回答