私のプロジェクト設定では、サポートされているインターフェイスの向きを両方のランドスケープとして作成しました。
それでも、各View Controllerに以下を実装する必要がありますか?
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return UIInterfaceOrientationIsLandscape(interfaceOrientation);
}