NavigationController配下のViewControllerで途中からLandscapeにする場合のおまじないObjective-C NavigationControllerにViewControllerをpushしていったときに、途中からたとえばPortraitから強制的にLandscapeにしたいときってありますよね。 supportedInterfaceOrientationsでLandscapeモードを返しても、一度iPhoneを回転させないと反映されないことがあります。その場合は該当するViewControllerのviewDidLoadで [[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationLandscapeRight animated:YES]; UIV