Load All TabBar Views

前端 未结 7 2059
独厮守ぢ
独厮守ぢ 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:30

    if you have UINavigationController before your views

    for viewController in self.tabBarController!.viewControllers! {
        var aView = viewController.topViewController as UIViewController
        aView.view.description
    }
    

提交回复
热议问题