NavigationBarの遷移(行ったり来たり)をコードで実装

 

 ■遷移元

  let nextView = self.storyboard?.instantiateViewController(withIdentifier: 遷移先storyboardID)

  self.navigationController?.pushViewConroller(nextView!, animated: true)

 

 ■遷移先

  self.navigationController?.popToRootViewController(animated: true)