leichunfeng / WXTabBarController

在系统 UITabBarController 的基础上实现安卓版微信 TabBar 的滑动切换功能
MIT License
1.09k stars 217 forks source link

您好,我有个小问题 #4

Closed eddieran closed 8 years ago

eddieran commented 8 years ago

滑动的时候navigation的title一起跟着滑动,我看代码中好像没有做特别的设置,是自动的吗?是在初始化ViewController的时候就自动生成了对应的navigationController,然后滑动的时候就跟着滑动了吗?

leichunfeng commented 8 years ago

是的,每个 Tab 页都是用一个 NavigationController 包着的:

tabBarController.viewControllers = @[
    [[UINavigationController alloc] initWithRootViewController:mainframeViewController],
    [[UINavigationController alloc] initWithRootViewController:contactsViewController],
    [[UINavigationController alloc] initWithRootViewController:discoverViewController],
    [[UINavigationController alloc] initWithRootViewController:meViewController],
];

整个应用的导航层次结构图如下:

image

eddieran commented 8 years ago

明白了,谢谢: )