Swift NavBar到TabBar prepareforsegue

时间:2016-01-23 22:50:54

标签: ios swift uitabbarcontroller

我正在尝试通过prepareforsegue将数据发送到嵌入NavigationBarController的TabBarController。

这是我的最后一次尝试而且没有用

override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
    var destinationViewController = tabBarController!.viewControllers![0] as! ProgressStartViewController // or whatever tab index you're trying to access
    destinationViewController.departureAirportLineChart = "data1"
    destinationViewController.arrivalAirportLineChart = "data2"
}

有什么想法吗?

0 个答案:

没有答案