使用某些方法,我可以检查我正在旋转设备的方向。但是,如何在加载应用程序时知道我所处的方向?我想编写代码,通过检查我的方向,重新排列viewDidLoad方法中的视图?
答案 0 :(得分:2)
UIDeviceOrientation myOrientation = [[UIDevice currentDevice] orientation];
答案 1 :(得分:0)
您还可以在ViewDidLoad / ViewWillAppear方法中使用类似于下面的内容。
if(UIInterfaceOrientationIsLandscape(self.interfaceOrientation)){
}