Modal View Controller force Landscape orientation in iOS 6

前端 未结 4 869
陌清茗
陌清茗 2021-02-15 11:41

I have a UITabBarController presented in Portrait mode. On one of the tabs I have a button that shows a UIViewController modally (A simple storyboard segue performs the action).

4条回答
  •  春和景丽
    2021-02-15 11:53

    In iOS 6 it seems to be this method may help force a specific orientation on iOS 6.

    - (NSUInteger)supportedInterfaceOrientations {
        return UIInterfaceOrientationMaskLandscape;
    }
    

    I am still trying to get it to work and will update with any findings.

提交回复
热议问题