Closed eddieran closed 8 years ago
是的,每个 Tab 页都是用一个 NavigationController 包着的:
tabBarController.viewControllers = @[
[[UINavigationController alloc] initWithRootViewController:mainframeViewController],
[[UINavigationController alloc] initWithRootViewController:contactsViewController],
[[UINavigationController alloc] initWithRootViewController:discoverViewController],
[[UINavigationController alloc] initWithRootViewController:meViewController],
];
整个应用的导航层次结构图如下:
明白了,谢谢: )
滑动的时候navigation的title一起跟着滑动,我看代码中好像没有做特别的设置,是自动的吗?是在初始化ViewController的时候就自动生成了对应的navigationController,然后滑动的时候就跟着滑动了吗?