You can select the navigation controller for navigation of the navigation controller from the storyboard:

And then use the identity inspector on the right to change the class:

For example, change the "Class" to MyCustomNavigationController , and then just create a new class in your project called MyCustomNavigationController :
MyCustomNavigationController.h
MyCustomNavigationController.m
@implementation MyCustomNavigationController - (NSUInteger)supportedInterfaceOrientations { return UIInterfaceOrientationMaskAll; } ... any other methods you want ... @end
mattjgalloway Oct 21 '12 at 15:04 2012-10-21 15:04
source share