if a particular section means a different view controller, YES possible
just add this line of code to the controller.
// which orientation that this view controller support - (NSUInteger)supportedInterfaceOrientations { return UIInterfaceOrientationMaskPortrait; } // prevent rotation - (BOOL)shouldAutorotate { return NO; } // after present this view controller, which orientation do you prefer ? - (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation { return UIInterfaceOrientationPortrait; }
source share