I have a collectionView of photos and want to pass the photo who was cliked to a detailViewControler.
The collection data come from :
var timeLineData:NSMutableArray = NSMutableArray ()
I would like to use the prepare for segue method.
My problem is how to get the good indexPath from the cell who was clicked ?
override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
if segue == "goToZoom" {
let zoomVC : PhotoZoomViewController = segue.destinationViewController as PhotoZoomViewController
let cell = sender as UserPostsCell
let indexPath = self.collectionView!.indexPathForCell(cell)
let userPost = self.timeLineData.objectAtIndex(indexPath!.row) as PFObject
zoomVC.post = userPost
}
}