如何在不使用NavigationController的情况下从一个视图导航到另一个视图

时间:2017-01-16 04:04:25

标签: ios swift uinavigationcontroller pushviewcontroller uitabcontroller

我想从UIViewController登录后调用UITabBarController

我使用pushViewController但它不起作用。 这是我的代码

    let dashboarController = DashboardTabBarController()
    self.navigationController?.pushViewController(dashboarController, animated: false)
    self.dismiss(animated: true, completion: nil)

这是我在DashboardController中的代码

 DashboardTabBarController: UITabBarController, UITabBarControllerDelegate {

override func viewDidLoad() {
    super.viewDidLoad()
    self.delegate = self
    self.view.backgroundColor = UIColor.white

    print("test")
    // Do any additional setup after loading the view.
}

override func viewWillAppear(_ animated: Bool) {
    super.viewWillAppear(animated)

    let tabOne = MerchantTableViewController()
    let tabOneBarItem = UITabBarItem(title: "Merchant", image: UIImage(named: "icon_merchant"), selectedImage: UIImage(named: "icon_merchant"))
    tabOne.tabBarItem = tabOneBarItem

    let tabTwo = RewardsViewController()
    let tabTwoBarItem2 = UITabBarItem(title: "Rewards", image: UIImage(named: "icon_reward"), selectedImage: UIImage(named: "icon_reward"))
    tabTwo.tabBarItem = tabTwoBarItem2

    let tabThree = ViewController()
    let tabTwoBarItem3 = UITabBarItem(title: "Promos", image: UIImage(named: "icon_promos"), selectedImage: UIImage(named: "icon_promos"))
    tabThree.tabBarItem = tabTwoBarItem3

    let tabFour = MerchantTableViewController()
    let tabTwoBarItem4 = UITabBarItem(title: "Transactions", image: UIImage(named: "icon_card"), selectedImage: UIImage(named: "icon_card"))
    tabFour.tabBarItem = tabTwoBarItem4

    let tabFive = ProfileViewController()
    let tabTwoBarItem5 = UITabBarItem(title: "Profile", image: UIImage(named: "icon_profile"), selectedImage: UIImage(named: "icon_profile"))
    tabFive.tabBarItem = tabTwoBarItem5
    self.viewControllers = [tabOne, tabTwo, tabThree, tabFour, tabFive]

   }
}

我是iOS开发的新手。感谢

2 个答案:

答案 0 :(得分:0)

Apple doc says : 导航控制器对象使用导航堆栈管理当前显示的屏幕,导航堆栈由一组视图控制器表示。阵列中的第一个视图控制器是根视图控制器。阵列中的最后一个视图控制器是当前正在显示的视图控制器 。您可以使用segues或使用此类的方法从堆栈中添加和删除视图控制器。

现在,如果您不想使用UINavigationController并添加UIViewController,请按照以下方法操作:

  1. Present ViewController
  2. Add as a Child VC

答案 1 :(得分:0)

  • 您应该在导航中使用要导航的视图控制器。如果不是,则使用root创建导航视图控制器的对象,将源视图控制器作为根视图控制器。

如果您不想使用导航控制器,则可以使用PresentViewController方法呈现视图控制器。