I am trying to use a "Flip" transition/animation. On both sides I want to have 2 separate UITables.
The following code that I am trying to do this with works fine, but it obviously "Flips" with the same view:
I don't know where I would include the second UITable for the backside?
The following code that I am trying to do this with works fine, but it obviously "Flips" with the same view:
Code:
CGContextRef context = UIGraphicsGetCurrentContext();
[UIView beginAnimations:nil context:context];
[UIView setAnimationTransition: UIViewAnimationTransitionFlipFromLeft forView:self.view cache:YES];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
[UIView setAnimationDuration:1.0];
[self.view exchangeSubviewAtIndex:0 withSubviewAtIndex:1];
[UIView commitAnimations];
I don't know where I would include the second UITable for the backside?