UIInterfaceOrientationLandscapeRight
サポートされている方向によって優先方向が返されるため、このエラーは意味がありません
//iOS6
-(BOOL)shouldAutorotate
{
return NO;
}
-(NSUInteger)supportedInterfaceOrientations
{
return (UIInterfaceOrientationLandscapeRight | UIInterfaceOrientationLandscapeLeft);
}
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
{
return UIInterfaceOrientationLandscapeRight;
}
エラー :
キャッチされなかった例外「UIApplicationInvalidInterfaceOrientation」が原因でアプリを終了しました。理由:「preferredInterfaceOrientationForPresentationはサポートされているインターフェイスの向きを返す必要があります!」