0

デバイスが横向きの場合でも、ビューコントローラーを横向きモードで開き、縦向きをブロックしたい.iには4つのビューコントローラーがあり、最初の3つにはすべての向きがあり、最後のビューコントローラーには、表示中に横向きモードとブロック縦向きモードのみが必要ですそれは可能ですか?

前もって感謝します

4

2 に答える 2

1

はい、ランドスケープモードにしたい場所にこのコードを書くことができます..

-(NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
{

    return UIInterfaceOrientationMaskLandscape

}
-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interface
{
    return (interface==UIInterfaceOrientationMaskLandscape)

}
于 2013-08-13T09:51:11.223 に答える
0

以下のコードを AppDelegate に記述します

-(NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
{

    return UIInterfaceOrientationMaskLandscape;

}
于 2013-08-13T10:04:18.537 に答える