I am trying to flip animate from a navigation controller/table view over to another UIView called aboutView. I have it working...sort of.
What's not working is that the tableView is still active, still scrolls and is visible underneath the new UIView. Not sure how to resolve this but presume that I need to do hide/remove the navigation controller/tableview in some way. Any assistance or hints would be greatly appreciated... thanks.
The following code is in my RootViewController.m:
Code:
- (IBAction)infoButtonPressed:(id)sender {
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:1.0];
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight
forView:[self view]
cache:YES];
[UIView commitAnimations];
[self.view addSubview:aboutView];
[self.view bringSubviewToFront:aboutView];
}