Navigation Controller goes to other View Controller in Swift

let secondViewController = self.storyboard?.instantiateViewController(withIdentifier: "secondVC") as! SecondViewController
self.navigationController?.pushViewController(secondViewController, animated: true)
Previous
Next Post »