let destinationStoryboard = UIStoryboard(name:"storyboard文件名", bundle:nil)
let destinationViewController = destinationStoryboard.instantiateViewController(withIdentifier: "控制器的id(在storyboard中设置)")
self.navigationController?.pushViewController(destinationViewController, animated: true)
|