答えて

0

まずストーリーボードにビューコントローラのストーリーボードIDを設定します。

enter image description here

そして

let menuVC = UIStoryboard(name: "Main", bundle: nil).instantiateViewController(withIdentifier: "MenuVC" as! MenuVC 

そして、あなたはナビゲーションコントローラ

self.navigationController?.pushViewController(menuVC, animated: true) 

を使用しているまたはあなたがそれを提示することができます。

self.present(menuVC, animated: true, completion: nil) 
関連する問題