open your main.storyboard and provide the storyboard identifier(any name) for your viewcontroller in StoryboardID ![enter image description here]()
in your code .
if you want to Push
if {
stop.timer
} else {
let nextViewController = self.storyboard?.instantiateViewControllerWithIdentifier("VerifyUserVC") as! VerifyUserVC
self.navigationController?.pushViewController(nextViewController, animated:true)
}
and if you want to present Modally
if {
stop.timer
} else {
let nextViewController = self.storyboard?.instantiateViewControllerWithIdentifier("VerifyUserVC") as! VerifyUserVC
self.presentViewController(nextViewController, animated: true, completion: nil)
}