Skip to content

Instantly share code, notes, and snippets.

@jamesporter
Created August 25, 2021 20:30
Show Gist options
  • Select an option

  • Save jamesporter/ee813916eed050da3b5107cbdecc5491 to your computer and use it in GitHub Desktop.

Select an option

Save jamesporter/ee813916eed050da3b5107cbdecc5491 to your computer and use it in GitHub Desktop.
Info.plist with sensible defaults: portrait only on iPhone, all on iPad
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment