답변

0

먼저 스토리 보드 뷰 컨트롤러 스토리 보드 ID를 설정 : 여기

//... 
let vc = self.storyboard?.instantiateViewController(withIdentifier: "MenuVC") as! MenuVC 
self.present(vc, animated: true, completion: nil) 
//... 

을하지만, 전체 응답이다.

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)