How to get current orientation of device programmatically in iOS 6?

前端 未结 8 802
庸人自扰
庸人自扰 2020-12-30 23:50

I have developed an iOS App and tested it on iOS6 device. While testing, I realized that my App is not responding to Orientation changes as expected.

Here is my Code

8条回答
  •  温柔的废话
    2020-12-31 00:35

    Maybe stupid but it is working (only in ViewController):

    if (self.view.frame.size.width > self.view.frame.size.height) {
        NSLog(@"Hello Landscape");
    }
    

提交回复
热议问题