I have three view controllers: MainViewController, FirstModalViewController and SecondModalViewController. All of them have implemented shouldAutorotateToInterfaceOrientation:.
In MainViewController, I present a FirstModalViewController using presentModalViewController:animated: with modal style of UIModalPresentationFormSheet. Then, in FirstModalViewController, I present a SecondModalViewController using the same method but with modal style of UIModalPresentationFullScreen.
The problem is that after I rotate the device and then dismiss the SecondModalViewController, I notice the FirstModalViewController does not autorotate, but the MainViewController autorotate.
Why FirstModalViewController does not autorotate when it is covered by SecondModalViewController?
FirstModalViewControllerbefore presentingSecondModalViewController. After I dismissSecondModalViewController, I presentFirstModalViewControlleragain. So there is always only one presented modal view. – hujunfeng Apr 11 '12 at 16:48