输出 事件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]
}
}
}