Flip View Iphone
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 just get the flipped view, without animation. When I flip back, the animation shows just fine. The flips are triggered from buttons on the views themselves. - (IBAction)showMoreInfo:(id)sender { UIView *moreInfo = self.flipView; [UIView beginAnimations:nil context:nil]; [UIView setAnimationDuration:2.0]; [UIView setAnimationBeginsFromCurrentState:NO]; [UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight forView:self.view cache