push vs present present push 전개방향 세로 가로 돌아가기 dismiss pop 메소드 UIViewController UINavigationController 🌪 UIViewController 1. present : 이동 modally : 뷰 위에 뷰가 한겹 올라간 구조 세로방향으로 전개 ex. alert 알람, 새로운 이메일 작성하기 등 @IBAction func 함수명(_ sender: Any) { guard let 이동할뷰컨 = self.storyboard?.instantiateViewController(withIdentifier: "뷰컨아이디") else {return} self.present(이동할뷰컨, animated: true, completion: nil) } pres..