I\'m making a game using SpriteKit. I have 3 viewControllers: selecting level vc, game vc, and win vc. After the game is over, I want to show the win vc, then if I press OK
You should be able to call:
self.presentingViewController.dismissViewControllerAnimated(true, completion: {});
(You may need to add ? or ! somewhere - I'm not a swift developer)
?
!