I\'m trying to work with the iOS6 Auto-rotation mess.
I\'ve looked at almost every single SO question relating to it, and no matter what I try, I can\'t get rotation wor
It would appear Apple have removed the ability to push a view in a specific orientation. preferredInterfaceOrientationForPresentation
does get called, but only when popping back or presenting a view controller. I had to present my landscape view rather than push it, and set shouldAutoRotate
= NO.
Refer to: In iOS6, trouble forcing ViewController to certain interfaceOrientation when pushed on stack for more details.