我正在尝试通过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"
}
有什么想法吗?