我想为 mya 应用程序构建一个自定义标签栏,但我有一个小问题:内置的 tabBar 支持hidesBottomBarWhenPushed
. 有没有办法告诉我的应用我CustomTabBar
是底栏?这就是我想要做的(相同的 UINavController):
+---------+ +---------+
|---------| |---------|
| | | |
| [btn] | ---> | 2nd |
| | | | view |
|---------| | | |
there's tabbar --> | 1 | 2 | | | | <- no tabbar
+---------+ | +---------+
|
pushViewController:animated:
我CustomTabBarController
的层次结构很像原来UITabBarController
的:
CustomTabBarController
|- UINavigationController (root: FirstViewController) <- there's a button
|- UINavigationController (root: SecondViewController)
有没有办法做到这一点?提前致谢。