アプリケーションでa を使用しsplitviewController
ました。アプリの向きは厳密に横向きに設定されています。ビルド設定で適切に実行しました。
iOS 5.1 以降でアプリを実行すると、問題なく動作します。しかし、iOS 5 以下でアプリを実行すると、アプリの向きが横向きに変わりません。それは大きな問題です。解決策はありますか?
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}