I have two views A and B. A pushes to B, and B pops back to A. In A, using "shouldAutorotateToInterfaceOrientation" I limit rotation to Portrait and PortraitUpsideDown.
In B I limit the rotation to LandscapeLeft/Right.
However, when I push to view B, regardless of the initial orientation of my device, view B also shows up Portrait until I rotate my device. From then on, it auto rotates to LandscapeLeft/Right like it should.
Everything Ive read so far talks about shouldAutorotateToInterfaceOrientation, but I have that setup correctly (at least I think I do).
How can make view B always start in Landscape?
Thanks.