通过Swift中的prepareForSegue将数据从UICollectionView传递到UITableView

时间:2016-02-19 21:11:29

标签: ios swift uitableview uicollectionview segue

输出 事件ID为:Circle 无法转换类型' ThisLondon.ViewController' (0x9c338)到' UICollectionViewCell' (0x39dbd1a0)。 (lldb)

是"圈"正在输出,这就是我选择的,很棒,虽然我无法通过segue传递给tableView?!

这是我的代码:

override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
    if segue.identifier == "selectedTube" {
        let detailViewController = segue.destinationViewController as! tubeDetailsTableViewController

        if let indexPath = collecView.indexPathForCell(sender as! UICollectionViewCell) {
            detailViewController.selectedTube = stationArray[indexPath.row]
        }
    }
}

0 个答案:

没有答案