In my view controller, upon a specific if condition, I want to move automatically to the next view controller. I tried this code. But it won't work. Please help.
if rightCounter == 5 {
var Level2 = self.storyboard?.instantiateViewControllerWithIdentifier("Level2") as? ViewController
self.presentViewController(Level2!, animated: true, completion: nil)
}
}