I\'m trying to set the initial orientation for my app to be UIInterfaceOrientationLandscapeLeft
I cant get
\'Initial interface orientation\'[UIInter
Initial Interface Orientation did not worked for me. I just changed the sequence in supported interface orientation and it worked.
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.