Created
December 8, 2014 01:14
-
-
Save m0rsecode/1d2c0ab763a761b7ad0a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) { | |
self.selectedProduct = products[indexPath.row] as PFObject | |
} | |
override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) { | |
let destinationController = segue.destinationViewController as ProductDetailViewController | |
destinationController.productData = self.selectedProduct as PFObject | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment