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)
それを達成する方法はありますか?前もって感謝します。