0
我的應用程序顯示pdf頁面,在縱向模式下顯示單個頁面(默認模式是縱向)。旋轉到landcscape時,它應該並排顯示兩頁, 在我的ViewController的viewdidload方法中,我添加了以下內容如何在ios7中檢測旋轉的風景模式?
- (void)viewDidLoad
{
UIDeviceOrientation deviceOrientation = [[UIDevice currentDevice] orientation];
landscape=UIDeviceOrientationIsLandscape(deviceOrientation);
if(landscape)
{
//logic goes here
}
else
{
logic for portrait goes here
}
}
但它不爲我工作,只肖像邏輯越來越excecuted.Please幫助