17

In iOS6, shouldAutorotateToInterfaceOrientation is deprecated. I tried to use supportedInterfaceOrientations and shouldAutorotate to make app working correctly for autorotation but failed.

this ViewController I don’t want to rotate, but it doesn't work.

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    return (interfaceOrientation == UIInterfaceOrientationPortrait);
}

-(BOOL)shouldAutorotate
{
    return NO;
}

-(NSUInteger)supportedInterfaceOrientations
{
    return UIInterfaceOrientationMaskPortrait;
}

Any ideas? Thanks for any help in advance!

Carina
  • 2,260
  • 2
  • 20
  • 45

2 Answers2

38

Figured it out.

1) subclassed UINavigationController (the top viewcontroller of the hierarchy will take control of the orientation.) did set it as self.window.rootViewController.

- (BOOL)shouldAutorotate
{
    return self.topViewController.shouldAutorotate;
}
- (NSUInteger)supportedInterfaceOrientations
{
    return self.topViewController.supportedInterfaceOrientations;
}

2) if you don't want view controller rotate

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    return (interfaceOrientation == UIInterfaceOrientationPortrait);
}

-(BOOL)shouldAutorotate
{
    return NO;
}

-(NSUInteger)supportedInterfaceOrientations
{
    return UIInterfaceOrientationMaskPortrait;
}

3) if you want it to be able to rotate

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
}

-(NSUInteger)supportedInterfaceOrientations
{
    return UIInterfaceOrientationMaskAllButUpsideDown;
}

-(BOOL)shouldAutorotate
{
    return YES;
}

BTW , According to your needs ,another related method :

- (NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
{
     return UIInterfaceOrientationMaskPortrait;
}
Carina
  • 2,260
  • 2
  • 20
  • 45
  • 2
    +1 for answering your own question with some nice code examples – Robotic Cat Sep 30 '12 at 17:02
  • Why are you overwriting `- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation`? It is deprecated and is never calling – voromax Oct 08 '12 at 14:39
  • 2
    It works for iOS 5.1 or later.Unless your app's deployment target is 6.0. @voromax – Carina Oct 09 '12 at 01:13
  • Doesn't work. My subclassed UINavigationController never has -(BOOL)shouldAutorotate called. – Zigglzworth Oct 25 '12 at 16:46
  • Did you set it as self.window.rootViewController? @Zigglzworth – Carina Oct 26 '12 at 06:51
  • @voromax "overriding" not "overwriting". – verec Apr 26 '13 at 04:58
  • What exactly are we trying to do when subclassing UINavController? I have a tab bar-> navbar -> uitablevc -> uivc. I understand the top hierarchy takes over (tabbarcontroller in my case). I need to force my tablevc portrait & uivc landscape left. – marciokoko Dec 11 '13 at 21:26
3

If you are using a Tab Bar Controller instead of a Navigation Controller as your root controller, you'll need to similarly subclass UITabBarController.

Also the syntax will be different. I used the following with success. I then used the above examples with success on the view controllers I wanted to override. In my case I wanted the main screen to not rotate but I had a FAQ Screen with Movies that I naturally wanted to enable landscape view. Worked perfectly! Just note the syntax change to self.modalViewController (you'll get a compiler warning if you try to use the syntax for a navigation controller.) Hope this helps!

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

- (BOOL)shouldAutorotate
{
    return self.modalViewController.shouldAutorotate;
}

- (NSUInteger)supportedInterfaceOrientations
{
    return self.modalViewController.supportedInterfaceOrientations;
}
Jim Hankins
  • 1,055
  • 1
  • 11
  • 27