So I followed this thread: RootViewController Switch Transition Animation to transit the window.rootViewController from A to B to C. Code looks like this:

[UIView transitionWithView:self.window 
                  duration:0.5 
                   options: UIViewAnimationOptionTransitionFlipFromLeft 
                animations:^{
                               self.window.rootViewController = newViewController;
                } 
                completion:nil];

The problem is my app shall only support landscape, but during the rootViewController transition, the new view controller appears in portrait mode than quickly rotate to landscape mode.

I'm sure that:

  1. I've set UISupportedOrientation to landscape (home button right)
  2. for each viewcontroller, in the shouldAutoRotateToOrientation method, I set only for landscape

What could be the other reason?

link|improve this question

feedback

1 Answer

up vote 8 down vote accepted

I looked into this just now because I kept getting the same issue. I randomly tried the following, and it worked perfectly -- tested on 5.0 SDK ONLY:

[UIView
    transitionWithView:window 
    duration:0.5
    options:UIViewAnimationOptionTransitionCrossDissolve
    animations:^(void) {
        BOOL oldState = [UIView areAnimationsEnabled];
        [UIView setAnimationsEnabled:NO];
        [(ICApp *)sharedApplication.delegate window].rootViewController = self;
        [UIView setAnimationsEnabled:oldState];
    } 
    completion:nil];

I know it's a bit odd to disable/enable animations inside an animation block, but the cross dissolve animates, and the rotation does not -- the view controller appears already rotated and ready to roll.

link|improve this answer
Hey, I'll check this in my project, thanks! – Chris Chen Dec 14 '11 at 13:40
Thanks, this fixed other visual craziness that had nothing to do with rotation. I edited it to include preserve the original animation state, rather than assuming it should be YES. – benzado Jan 5 at 0:05
Good catch & thanks benzado :) – Kalle Jan 6 at 7:00
1  
Tested on iOS 4.3 on device and works. Thanks! – mackross Feb 18 at 15:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.