デバイスが横向きの場合でも、ビューコントローラーを横向きモードで開き、縦向きをブロックしたい.iには4つのビューコントローラーがあり、最初の3つにはすべての向きがあり、最後のビューコントローラーには、表示中に横向きモードとブロック縦向きモードのみが必要ですそれは可能ですか?
前もって感謝します
デバイスが横向きの場合でも、ビューコントローラーを横向きモードで開き、縦向きをブロックしたい.iには4つのビューコントローラーがあり、最初の3つにはすべての向きがあり、最後のビューコントローラーには、表示中に横向きモードとブロック縦向きモードのみが必要ですそれは可能ですか?
前もって感謝します
はい、ランドスケープモードにしたい場所にこのコードを書くことができます..
-(NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
{
return UIInterfaceOrientationMaskLandscape
}
-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interface
{
return (interface==UIInterfaceOrientationMaskLandscape)
}
以下のコードを AppDelegate に記述します
-(NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
{
return UIInterfaceOrientationMaskLandscape;
}