我在故事板中从单元格到SecondViewController有一个带有segue的Collection View。它运行良好,当我点击任何单元格时,它进入下一个屏幕。
现在我尝试获取在该单元格中单击的文本并将其发送到下一个单元格。我可以在表格视图中这样做,所以我适应了这一点。我留下了有问题的部分:
override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
var secondScene = segue.destinationViewController as! SecondViewController
//let indexPath = self.tableView.indexPathForSelectedRow()//it gets the row in a table
//let indexPath = self.collectionView.cellForItemAtIndexPath()//I try to adapt to a Collection View. It does not work
secondScene.selected2 = textArray[indexPath!.row]
}