please consider the code below, and tell me what I\'m doing wrong.
I want to flip between two UIViews.
Somehow, when I flip away from the initial view, I jus
After iOS 4.0, you can flip between views with this:
[UIView transitionFromView:sourceView toView:destinationView duration:0.35f options:UIViewAnimationOptionTransitionFlipFromRight completion:^(BOOL finished) {
NSLog(@"I just flipped!");
}];
As Jason mentioned, you'll need this to occur within a container view.