Pass data between ViewController and TabBarController

后端 未结 4 1464
旧巷少年郎
旧巷少年郎 2021-02-09 07:07

I have couple of questions. How to pass the data (which i got after the Alamofire request is finished), to one of children of TabBarController?

The first problem i have

4条回答
  •  太阳男子
    2021-02-09 07:42

    change tabbar selected Index & send data to that ViewController

    tabBarController!.selectedIndex = 2
    let navVC = tabBarController!.viewControllers![2] as! UINavigationController
    
    let SV = navVC.topViewController as! SearchViewController
    SV.selectedIndex = indexPath.row
    

提交回复
热议问题