How to force a UIViewController to Portrait orientation in iOS 6

后端 未结 16 1529
别那么骄傲
别那么骄傲 2020-11-22 06:03

As the ShouldAutorotateToInterfaceOrientation is deprecated in iOS 6 and I used that to force a particular view to portrait only, what is the c

16条回答
  •  臣服心动
    2020-11-22 06:57

    Put this in the .m file of each ViewController you don't want to rotate:

    - (NSUInteger)supportedInterfaceOrientations
    {
        //return UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskLandscapeLeft;
        return UIInterfaceOrientationMaskPortrait;
    }
    

    See here for more information.

提交回复
热议问题