ViewController가 다른 ViewController를 호출하는 방식 (present) 다른 ViewController를 Modal로 띄움 - UIViewController에 정의된 present 메소드를 사용 다시 원래 화면으로 돌아올 때 - presentingViewController?.dismiss(animated:) full screen으로 화면 띄우기 - vc.modalPresentationStyle = .fullScreen 예) 1. 새로운 viewController 생성 후 viewController의 storyboard ID 생성 - viewController에 버튼 추가 2. ViewController에 Button Action 추가 - instantiateViewControlle..