我有一个基本的导航堆栈:NavController-> UITableViewController(作为NavController中的rootViewController) – >菜单项,主选项是自定义viewController.我希望我的应用程序可以使用主自定义视图控制器作为navigationController堆栈上的当前视图启动,然后使用后退按钮进入主菜单.是否有某种方法使用故事板以这种方式设置堆栈,但在启动时首先显示自定义视图?
我试图尽可能地在故事板中这样做.我知道我可以进入appDelegate和appDidFinishLaunching …将自定义viewController推入navController,但这看起来很糟糕,因为在我的appDelegate中我必须引用navController和自定义viewController.
解决方法
遗憾的是,UIStoryboard无法以可视方式操作UINavigationController层次结构.在您的情况下,您需要在应用程序委托中以编程方式建立层次结构.幸运的是,因为你是故事板,你的app委托已经包含对这个导航控制器的引用.
当故事板时,所谓的“初始视图控制器”将通过时间-applicationDidFinishLaunchingWithOptions:被连接到应用程序的UIWindow实例上的rootViewController属性.
- (BOOL)application:(UIApplication *)app didFinishLaunchingWithOptions:(NSDictionary *)options { UINavigationController *navController = (UINavigationController *)self.window.rootViewController; MenuViewController *menu = [navController.storyboard instantiateViewControllerWithIdentifier:@"MenuController"]; CustomViewController *custom = [navController.storyboard instantiateViewControllerWithIdentifier:@"CustomController"]; // First item in array is bottom of stack,last item is top. navController.viewControllers = [NSArray arrayWithObjects:menu,custom,nil]; [self.window makeKeyAndVisible]; return YES; }
我意识到这不是理想的,但如果你想留在故事板的土地,我担心这是唯一的方法.