ストーリーボードを使用して UIViewController を作成し、それを UIViewController クラスにリンクしました。
UIViewController が縦向きのみをサポートするようにしたいのですが、打撃コードを試しましたが、うまくいかないようです。私のUIViewControllerはまだ回転しています。
ストーリーボードのプロパティを変更する必要がありますか?
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return ((interfaceOrientation == UIInterfaceOrientationPortrait) || (interfaceOrientation == UIInterfaceOrientationPortraitUpsideDown));
}