如何以编程方式知道应用程序加载时我所处的界面方向?

时间:2010-04-20 04:32:54

标签: iphone uiview uiinterfaceorientation

使用某些方法,我可以检查我正在旋转设备的方向。但是,如何在加载应用程序时知道我所处的方向?我想编写代码,通过检查我的方向,重新排列viewDidLoad方法中的视图?

2 个答案:

答案 0 :(得分:2)

UIDeviceOrientation myOrientation = [[UIDevice currentDevice] orientation];

答案 1 :(得分:0)

您还可以在ViewDidLoad / ViewWillAppear方法中使用类似于下面的内容。

if(UIInterfaceOrientationIsLandscape(self.interfaceOrientation)){
}