대표적인 방법 4가지 ViewController의 view 바꿔치기 -메모리 overflow 위험이 있기 때문에 좋은 방법이 아니라고 한다. ViewController가 다른 ViewController를 호출(present) -내가 가장 많이 쓰는 방법. 먼저 두개의 ViewController를 세팅하고 나같은 경우에는 각 뷰컨트롤러에 버튼을 만들어 firstVC에서는 아래의 코드를, @IBAction func buttonTapped(_ sender: UIButton) { let vc = UIStoryboard(name: "Main", bundle: nil).instantiateViewController(withIdentifier: "SecondViewController") as? SecondViewCo..