0

サンプル プロジェクトを開始し、View Controller に次のコードを追加しました。起動後、画面は横向きになります。次に、ストーリーボードに移動し、唯一のビュー、-> エディター -> 埋め込み -> ナビゲーション コントローラーをクリックしました。プログラムをもう一度起動します。画面は縦向きになり、何を試しても横向きに変わりません。何故ですか?(すべての向きが私の plist で有効になっています。)

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

-(NSUInteger)supportedInterfaceOrientations
{
    return UIInterfaceOrientationMaskLandscapeRight | UIInterfaceOrientationMaskLandscapeLeft;
}

- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
{
    return UIInterfaceOrientationLandscapeRight;
}

@end
4

1 に答える 1