屏幕旋转适配

屏幕旋转

  1. 如果根视图是tabbarController设置,否则不设置

    1
    2
    3
    4
    5
    6
    - (BOOL)shouldAutorotate {
    return [self.selectedViewController shouldAutorotate];
    }
    - (NSUInteger)supportedInterfaceOrientations {
    return [self.selectedViewController supportedInterfaceOrientations];
    }
  2. 子类化UINavigationController,假设为BaseNavigationController

  3. 在BaseNavigationController设置如下方法

    - (BOOL)shouldAutorotate
    {
        return self.topViewController.shouldAutorotate;
    }
    -(UIInterfaceOrientationMask)supportedInterfaceOrientations
    {
        return self.topViewController.supportedInterfaceOrientations;
    }
    
  4. 随后添加自己的view controller,如果想禁止某个view controller的旋屏:(支持全部版本的控制)

    - (BOOL)shouldAutorotate {
        return YES;
    }
    
    - (UIInterfaceOrientationMask)supportedInterfaceOrientations {
        return UIInterfaceOrientationMaskAllButUpsideDown;
    }