In my iOS/iPhone app I use a root view that shows a login form after startup (presented as modal view). After the user entered the login data, another view shall be shown:
[self dismissModalViewControllerAnimated:NO];
// Init UIViewController collector
collector.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentModalViewController:collector animated:YES]
What happens is:
- The login view is dismissed, the root view is shown
- The root view flips to the collector view
What I want to do
- The login view flips to the collector view (without showing the root view)
If I enable the animation in step 1, I receive an error that an animation is running and view two is not shown. Absolutely clear. Any suggestion how to explain iOS 6 that I do not want the root view to blink up? Thanks!