我想知道如何锁定主View Controller的方向,但如何让用户旋转到所有View Controller的横向视图?

提前致谢!

最佳答案

对于MainViewController:

   -(NSUInteger)supportedInterfaceOrientations
   {
       return UIInterfaceOrientationMaskPortrait;
   }

其他ViewController
   -(NSUInteger)supportedInterfaceOrientations
   {
        return UIInterfaceOrientationMaskLandscape;
   }

关于ios - 仅锁定主UIViewController的方向-iOS,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17900876/

10-09 02:16