-
** 추가 공부할 개념 **
< Content View Controller vs. Container View Controller >
- Content View Controller :
- 화면을 구성하는 뷰를 직접 구현하고 관련된 이벤트를 처리하는 뷰 컨트롤러
- 스토리보드 생성시 기본으로 생성되는 뷰 컨트롤러 - Container View Controller :
- 하나 이상의 Child View Controller를 가지고 있음
- 하나 이상의 Child View Controller를 관리하고 레이아웃과 화면 전환을 담당
- 화면 구성과 이벤트 관리는 Child View Controller에서
- 대표적으로 Navigation Controller와 TabBar Controller
- Content View Controller :