Created
December 19, 2018 13:16
-
-
Save sarunw/48c7deb6bd5e1de21ede45acf9890378 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
| class OrderSummaryViewController: UIViewController { | |
| override func prepare(for segue: UIStoryboardSegue, sender: Any?) { | |
| if segue.identifier == "checkout" { | |
| let vc = segue.destination as! ShippingOptionViewController | |
| vc.cart = cart // pass along cart information to next view controller | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment