Load All TabBar Views

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

    Swift 3:

    In viewDidLoad() of your UITabBarController

    for viewController in self.viewControllers! {
        _ = viewController.view
    }
    

提交回复
热议问题