Answers for "go from programatically vc to storyboard vc"

-1

swift push view controller programmatically

let storyBoard : UIStoryboard = UIStoryboard(name: "Main", bundle:nil)
let nextViewController = storyBoard.instantiateViewController(withIdentifier: "nextView") as! NextViewController
self.present(nextViewController, animated:true, completion:nil)
Posted by: Guest on June-15-2020

Code answers related to "go from programatically vc to storyboard vc"

Code answers related to "Swift"

Browse Popular Code Answers by Language