(絵コンテ使用)
ViewController サブクラスの 1 つが縦向きビュー以上のものをサポートするようにしようとしています。
追加しました
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return ((interfaceOrientation == UIInterfaceOrientationLandscapeLeft) || (interfaceOrientation == UIInterfaceOrientationPortrait));
}
しかし、それは何もしないようです。私は plist でサポートされている上下を除くすべての向きを持っており、必要なビューコントローラーで縦向きのみを許可するように shouldautorotate を追加しました。