Monti

Swift UINavigationViewController 본문

IOS/Swift

Swift UINavigationViewController

montt 2022. 9. 28. 22:37

UINavigationViewController

Content View Controller


화면을 구성하는 뷰를 직접 구현하고 관련된 이벤트를 처리하는 뷰 컨트롤러

Container View Controller


  • 하나 이상의 Child View Controller 를 가지고 있다.
  • 하나 이상의 Child View Controller 를 관리하고 레이아웃과 화면 전환을 담당한다.
  • 화면 구성과 이벤트 관리는 Child View Controller 에서 한다.
  • Container View Controller 는 대표적으로 Navigation Controller와 TabBar Controller가 있다.

UINavigationController 예시

 

Navigation Bar 구성

 

Navigation Stack 구조

 

'IOS > Swift' 카테고리의 다른 글

Swift - UserDefault  (0) 2022.09.29
Swift - UITabBarController  (0) 2022.09.28
Swift - UIViewController  (0) 2022.09.28
Swift UIKit 설명  (0) 2022.09.28
Swift Architecture / 스위프트 아키텍쳐 패턴  (1) 2022.09.28
Comments