我有一個導航控制器,它通過肖像。然後,在某個點上,我推入一個顯示圖形的視圖,該圖形只能在橫向上顯示,甚至不會顯示爲縱向(這會影響視圖的外觀)。不需要的UIView Autorotating:導航控制器推
在此視圖中,GraphViewController,我有以下方法:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return UIInterfaceOrientationIsLandscape(interfaceOrientation);
}
當視圖第一被推動時,它會出現在縱向模式。如果我旋轉手機,視圖也會旋轉爲橫向(不是顛倒的人像)。但我希望它甚至不會處於肖像模式,甚至不會在開始時。我已經證實這個方法是通過添加一個NSLog來調用的。
您是否設法讓它工作? – fpg1503