Guest User

Untitled

a guest
May 26th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. // Set the currentViewController to description child VC because that is the first one
  2. // shown in the container view
  3. if segue.identifier == "DetailChildSegue" {
  4. let detailChildVC = DetailChildViewController()
  5. // Set product of the childVC
  6. let actionArray = [product?.action.keys.description] as? [String]
  7. detailChildVC.properties = actionArray
  8. }
  9. // Set the currentVC
  10. currentVC = segue.destination
  11. }
Add Comment
Please, Sign In to add comment