我正在使用 Xcode 菜单“编辑器...嵌入...导航控制器”在界面构建器中使用情节提要。
似乎在 iOS 6 中,您必须将 UINavigationController 子类化以允许所有方向,使用
- (NSUInteger)supportedInterfaceOrientations {
return (UIInterfaceOrientationMaskAll );
}
但是,由于代码中没有对它的引用,我如何使用故事板应用程序对 UINavigationController 进行子类化?