Unwind from a VC to a TabBarController and change tab index

前端 未结 2 430
孤城傲影
孤城傲影 2021-01-27 17:04

I have the following Storyboard layout:

When the app starts it goes to HomeView VC at TabIndex 1.

In the HomeView I have a but

2条回答
  •  爱一瞬间的悲伤
    2021-01-27 17:31

    To go from TestView to HistoryView, should be something along these lines:

    // From TestView to HomeView(0)
    navigationController?.popViewController(animated: true)
    // Change the active tab in the tabcontroller
    (navigationController?.presentingViewController as? UITabBarController)?.selectedIndex = 1
    

提交回复
热议问题