Я хочу поддерживать только UIInterfaceOrientationLandscapeRight и UIInterfaceOrientationLandscapeLeft - PullRequest
2 голосов
/ 15 апреля 2010

как мне убедиться, что UIInterfaceOrientationPortraitRight и UIInterfaceOrientationPortraitLeft не поддерживаются.

В основном, я хочу, чтобы мое приложение использовалось ТОЛЬКО в UIInterfaceOrientationLandscapeRight и UIInterfaceOrientationLandscapeLeft

Я редактировал файл Info.plist

<string>MainWindow</string>
 <key>UISupportedInterfaceOrientations</key>
 <array>          
      <string>UIInterfaceOrientationLandscapeLeft</string>
      <string>UIInterfaceOrientationLandscapeRight</string>
 </array>

1 Ответ

4 голосов
/ 15 апреля 2010

Убедитесь, что в каждом UIViewController / UITabBarController и т. Д. В shouldAutoRotateToInterfaceOrientation в ответе указано return ((interfaceOrientation == UIInterfaceOrientationLandscapeLeft) || (interfaceOrientation == UIInterfaceOrientationLandscapeRight));.

...