How to force view controller orientation in iOS 8?

前端 未结 25 2430
太阳男子
太阳男子 2020-11-22 13:11

Before iOS 8, we used below code in conjunction with supportedInterfaceOrientations and shouldAutoRotate delegate methods to force app orie

25条回答
  •  眼角桃花
    2020-11-22 13:20

    For me, the top level VC needed to implement the orientation overrides. Using VC's down the stack will have no effect if the top VC is not implementing.

    VC-main
        |
        -> VC 2
            |
            -> VC 3
    

    Only VC-Main is listened to, essentially in my testing.

提交回复
热议问题