1

cocos2dゲーム開発初心者です。ここでは、私のゲームはポートレート モードで開発されています。ランドスケープモードに変換したいだけです。shouldAutorotateToInterfaceOrientationこのメソッドはiOS 6では使用できないため、メソッドの代わりに使用されるメソッドを教えてください。

私のゲーム全体は、最初からポートレート モードで開発されています。

前もって感謝します。

4

3 に答える 3

3

以下のコードは appdelegate.mm ファイルにあります。

 #if GAME_AUTOROTATION == kGameAutorotationUIViewController
[director setDeviceOrientation:kCCDeviceOrientationPortrait];
 #else
[director setDeviceOrientation:kCCDeviceOrientationLandscapeLeft];

に変更します。

#if GAME_AUTOROTATION == kGameAutorotationUIViewController
[director setDeviceOrientation:kCCDeviceOrientationLandscapeLeft];
 #else
[director setDeviceOrientation:kCCDeviceOrientationLandscapeLeft];

それが機能しているかどうかを教えてください!!!!

于 2013-05-22T06:13:20.407 に答える
0

ターゲットに移動し、サポートされているインターフェイスの向きを設定します。

于 2013-05-22T05:53:16.953 に答える