2010-04-20 39 views

回答

2
UIDeviceOrientation myOrientation = [[UIDevice currentDevice] orientation]; 
0

您還可以在ViewDidLoad/ViewWillAppear方法中使用類似於下面的內容。

if(UIInterfaceOrientationIsLandscape(self.interfaceOrientation)){ 
} 
相關問題