UINavigationController 和 UITabBarController
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UINavigationController 和 UITabBarController相关的知识,希望对你有一定的参考价值。
UINavigationController当设置根控制器的时候,意思就是把根控制器压入栈内,当我们push的时候,我们把下一个控制器压入栈内,当我们pop的时候把上面的控制器的内存释放
UITabBarController的使用步骤
初始化UITabBarController
设置UIWindow的rootViewController为UITabBarController
根据具体情况,通过addChildViewController方法添加对应个数的子控制器
UITabBarController添加控制的方式有2种
添加单个子控制器
- (void)addChildViewController:(UIViewController *)childController
设置子控制器数组
@property(nonatomic,copy) NSArray<__kindof UIViewController *> *viewControllers;
UITabBar
如果UITabBarController有N个子控件,那么UITabBar内部就会有N个UITabBarButton做为子控件
如果UITabBarController有4个子控制器,那么UITabBar的结构大致如下图所示
UITabBarButton
UITabBarController的view结构
以上是关于UINavigationController 和 UITabBarController的主要内容,如果未能解决你的问题,请参考以下文章
带有主 UINavigationController 和详细 UINavigationController 的 UISplitViewcontroller
带有 UINavigationController 的 UITabBarController,在 hidesBottomBarWhenPushed 上隐藏 UINavigationController
在 UINavigationController 内的 UITabBarcontroller 中添加 UINavigationController?
UINavigationController 与 AppDelegate 中的 UISegmentedControl 切换 UINavigationController 的 rootviewcontr
从一个 UINavigationController 到另一个 UINavigationController (Swift iOS 9, xcode 7)