0

在我的視圖控制器我有這個功能實現:接口方向設置爲橫向只

-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { 
    return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft); 
} 

,但我的視圖控制器不切換它的方向。我錯過了什麼?感謝

+0

如果你在那一行設置了一個斷點,它有沒有命中? – slf

回答

0

我做:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { 
    if (interfaceOrientation == UIDeviceOrientationLandscapeLeft || interfaceOrientation == UIDeviceOrientationLandscapeRight) 
    { 
     return YES; 
    } 
    return NO; 
} 

這基本上是你在做什麼。確保InterfaceBuilder也具有橫向模式的視圖。

+0

感謝您的回覆。我嘗試過,但不起作用。我沒有筆尖,一切都以編程方式完成。 – sumderungHAY

相關問題