0

私は、iPhone アプリの設計のために Xcode をプログラミングして使用するのはかなり初心者です。私は次のことをしたい:

  1. 子供向けアプリを横向きモードで起動してそのままにします。
  2. スワイプ ジェスチャを使用して、画像から画像へ移動します。スワイプごとに 1 つの画像。

私の問題はこれです:

ランドスケープ モードで開始した場合でも、スワイプ後に iPhone シミュレーターがポートレート モードに回転します。

アドバイスやコメントは大歓迎です。

4

1 に答える 1

0

サポートするモードを shouldAutorotateToInterfaceOrientation: で定義する必要があります。

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft) || (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}

両方の横向きモードを処理します。

于 2012-08-28T20:05:18.277 に答える