`
chenniaoc
  • 浏览: 39872 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

use UINavigationController inside a UITabBarController

 
阅读更多
If you want to add a UINavigationController into a TabView, and while the tab was taped,turn current view to display rootView of the UINavigationController.Keep following principles.


1,Don't put the view which is expected to display into  TabView straightly.

2,Instead of 1,wrap the view by a NavigationController,then put the NavigationController into  TabView.


      loginViewController = [[[LoginViewController alloc] init]autorelease];
    loginViewController.title = @"Setting";
    
    UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController2] ;
    
    
    self.tabBarController = [[[UITabBarController alloc] init] autorelease];
    self.tabBarController.viewControllers = [NSArray arrayWithObjects:viewController1, navigationController,loginViewController, nil];
    self.window.rootViewController = self.tabBarController;
    [self.window makeKeyAndVisible];
分享到:
评论

相关推荐

    UINavigationController+UITabBarController框架

    我们写iOS项目的时候,基本都是一个UINavigationController套一个UITabBarController的形式,就是上面一个导航栏,下面几个按钮的工具条的形式。我写了几个应用,发现如果每次都重新写的话完全就是浪费精力和时间,...

    iOS开发例程 -- UINavigationController和UITabBarController合用

    很多时候我们创建一个基于UITabBarController的application以后还希望能够在每个tab view都可以实现导航控制,即添加一个UINavigationController来实现tabview内部的view之间的切换,这即是本文所要介绍的。

    iOS 自定义UINavigationController和UITabBarController

    在iOS应用开发中,`UINavigationController`和`UITabBarController`是两个核心的控制器,用于构建常见的用户界面结构。它们分别是导航栈和标签页切换器,但有时开发者可能需要根据应用的需求进行定制,以实现独特的...

    UINavigationController与UITabBarController的使用例子

    在iOS应用开发中,`UINavigationController` 和 `UITabBarController` 是两个非常重要的视图控制器容器,它们用于构建用户界面的导航和切换功能。在这个使用例子中,我们将深入理解这两个类,并通过源码分析和实际...

    页面跳转 UITabBarController+UINavigationController+UIViewController

    在iOS应用开发中,`UITabBarController`、`UINavigationController`和`UIViewController`是三个非常重要的视图控制器类,它们协同工作,构建出用户友好的界面和流畅的导航体验。`UITabBarController`用于实现底部...

    UITabBarController和UINavigationController混用

    在iOS应用开发中,`UITabBarController` 和 `UINavigationController` 是两种常用且重要的控制器,它们各自负责不同的界面展示逻辑。`UITabBarController` 通常用于实现底部标签栏切换不同功能模块,而 `...

    UITabBarController和UINavigationController的整合使用

    UITabBarController和UINavigationController的整合使用DEMO,详情见:http://blog.csdn.net/hwe_xc/article/details/50588500

    纯代码搭建iOS三级结构(UITabbarController+UINavigationController+UIViewController)

    这个话题将深入探讨如何使用纯代码方式来搭建一个包含三级结构的UI,即`UITabBarController` + `UINavigationController` + `UIViewController`。这个结构常用于大型应用,因为它提供了良好的导航和组织用户内容的...

    swift——自定义UITabBar,UITabBarController和UINavigationController

    自定义UITabBar,layoutSubviews重写UITabBarButton位置,重写则hitTest方法并监听按钮的点击 自定义的UITabBarController和UINavigationController

    uitabbarcontroller navigationcontroller互相加载导航demo

    在iOS应用开发中,`UITabBarController` 和 `UINavigationController` 是两个非常重要的组件,它们分别用于实现底部标签栏切换和页面的栈式导航。`UITabBarController` 通常用作应用的基础视图控制器,展示多个子...

    UINavigationControllerAND UITabBarController

    在iOS应用开发中,`UINavigationController` 和 `UITabBarController` 是两个至关重要的视图控制器类,它们在构建用户界面时起着核心作用。这两个组件是Apple的UIKit框架的一部分,用于实现导航和多视图控制。 `...

    UITabBarController简单demo

    在iOS应用开发中,`UITabBarController` 和 `UINavigationController` 是两个非常重要的视图控制器。`UITabBarController` 用于展示多个具有底部标签栏的应用模块,而`UINavigationController` 则是管理一个堆栈式的...

    WHDropDownView:UINavigationController,UIViewController,UITabBarController,每个VC都可以添加此视图

    WHDropDownViewUINavigationController, UIViewController, UITabBarController, every VC can add this View.开门见山,先看效果图现在的移动端,用户的**“使用时长”**越来越得到重视。大量的App也使出浑身解数...

    navigation+uitabbarcontroller的代码

    在iOS应用开发中,`UINavigationController` 和 `UITabBarController` 是两个非常重要的组件,它们分别用于实现导航和标签页切换的功能。`UINavigationController` 负责管理一系列的视图控制器,通过堆栈的方式控制...

    ZCTabNav:UITabBarController 和 UINavigationController 组合和自定义样式

    ZCTabNav UITabBarController and UINavigationController combination and a custom style UITabBarController和UINavigationController组合使用与自定义样式 文档位置:

    UITabBarController2

    总的来说,`UITabBarController2`项目深入探讨了如何通过代码完全定制一个带有`UINavigationController`的`UITabBarController`,这涵盖了iOS应用中常见的页面切换和导航架构,对于理解和提升iOS开发技能非常有帮助...

    UINavigationController demo

    button.addTarget(self, action: #selector(buttonTapped), for: .touchUpInside) let barButtonItem = UIBarButtonItem(customView: button) navigationItem.leftBarButtonItem = barButtonItem ``` 在这里,我们...

    UINavigationController

    1. **分段控制器(TabBarController)集成**:`UINavigationController`常与`UITabBarController`结合使用,为每个分段提供独立的导航结构。 2. **交互式Pop手势**:默认情况下,`UINavigationController`支持从左侧...

    iOS的UI开发中UITabBarControlle的基本使用教程

    UITabBarController和UINavigationController类似,UITabBarController也可以轻松地管理多个控制器,轻松完成控制器之间的切换,典型的例子就是QQ、微信等应⽤。 二、UITabBarController的使用 1.使用步骤: (1)...

Global site tag (gtag.js) - Google Analytics