デバイス自体が回転しているときにアプリケーションを取得しようとしていますが、正しく取得できません。 サポートされているインターフェイスをplist infoファイルに追加し、shouldRotateToInterfaceOrientationに対してyesを返しました。iPhoneのインターフェイスオリエンテーションを有効にする
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { if (interfaceOrientation == UIInterfaceOrientationPortrait || interfaceOrientation == UIInterfaceOrientationLandscapeLeft || interfaceOrientation == UIInterfaceOrientationLandscapeRight) { return YES; } else { return NO; } }
これはローテーションの実装方法ですか。
助けてください!
これらのメソッドにBPを設定した場合、デバイスをローテーションするとヒットしますか? – psychotik
私はBPが何であるか分かりません。申し訳ありませんが、私はiOSプログラミング環境が初めてです。 – Olsi
BP =ブレークポイント –