Anyone who\'s trying the newest iOS 6 beta(version 2 or 3) has the same experience of auto rotation not working?
I am not using storyboard but pure navigation contro
Autorotation is changing in iOS 6. In iOS 6, the shouldAutorotateToInterfaceOrientation: method of UIViewController is deprecated. In its place, you should use the supportedInterfaceOrientations and shouldAutorotate methods.
shouldAutorotateToInterfaceOrientation:
UIViewController
supportedInterfaceOrientations
shouldAutorotate
Read more here.