I\'m trying to set the initial orientation for my app to be UIInterfaceOrientationLandscapeLeft
I cant get
\'Initial interface orientation\'[UIInter
Despite the documentation, UIInterfaceOrientation
is ignored. Use only UISupportedInterfaceOrientations
. To specify which one you prefer to launch into, make it the first one listed in UISupportedInterfaceOrientations
.
It is then up to your individual view controllers to rule out any orientations they refuse to adopt.