Load All TabBar Views

前端 未结 7 2019
独厮守ぢ
独厮守ぢ 2020-12-05 13:59

I have a tabbar controller as the root view controller. I would like to pre-load the views of tab [1,2,3] (tab 0 loads as the first tab automatically).

I essentially

相关标签:
7条回答
  • 2020-12-05 14:41

    If your all view controllers under the tab bar controller have a navigation bar embedded in them:

    Swift 3

    for navViewController in self.viewControllers! {
        _ = navViewController.childViewControllers[0].view
    }
    

    User Panda's solution didn't work for me.

    0 讨论(0)
提交回复
热议问题