IOS/UIKit

[UIKit] UINavigation Controller

민몬+ 2021. 10. 23. 22:05

Overview


Navigation Controller는 하나 이상의 View Controller를 관리하는 View Controller의 Container 객체이다.

Navigation Controller는 Child View Controller들을 Navigation Stack을 사용해 관리한다.

Navigation Controller의 첫 화면인 Root View Controller는 Stack의 최 하단에 위치한다.

새로운 View Controller를 Stack에 Push 할 경우 화면에 나타나며 이전의 View Controller는 그 아래에 숨겨진다. Back 버튼을 누르면 Stack의 최 상단의 View Controller가 POP 되며 아래 있던 View Controller가 나타난다.

Navigation Controller View


Navigation Controller는 UIViewController의 Subclass이다.

따라서 SuperClass의 view 프로퍼티를 사용해 View를 표시한다.

Navigation Controller의 View는 아래 와 같이 세 가지 SubView로 구성된다.

Navigation Controller는 Navigation Bar와 Navigation ToolBar의 생성, 수정, 표시등을 담당한다.

여러 함수를 통해 Navigation Bar와 ToolBar를 숨기거나 표시할 수 있다.

navigationBar, toolBar 프로퍼티의 appearance 프로퍼티를 통해 외형을 수정할 수 있다.

Bar들의 외형을 관련 프로퍼티를 통해 수정하는 것은 허용되지만 frame, bounds, alpha 등은 직접 바꾸면 안된다.

 

Navigation Controller의 View가 그려지는 방식은

Stack의 Top ViewController의 View를 Navigation Controller의 SubView로 추가하고

그 위에 Navigation Bar, Navigation ToolBar의 View를 SubView로 추가하는 방식이다.

따라서 Child View Controller에서는 Navigation Bar, Navigation ToolBar의 공간을 반드시 고려해야 한다.

 

UINavigationControllerDelegate


Navigation Controller의 delegate 프로퍼티가 준수하는 Protocol이다.

Child View Controller가 Stack에서 Push/Pop 될 때 Navigation Controller는 아래 두 함수를 통해 delegate에 알린다.

delegate 객체는 특정 ViewController를 Push, Pop 할 때 Animation을 지정할 수 있도록 여러 API를 제공한다.

 

Reference


https://developer.apple.com/documentation/uikit/uinavigationcontroller

 

Apple Developer Documentation

 

developer.apple.com

https://developer.apple.com/documentation/uikit/uinavigationcontrollerdelegate

 

Apple Developer Documentation

 

developer.apple.com

https://developer.apple.com/documentation/uikit/uinavigationbar

 

Apple Developer Documentation

 

developer.apple.com

 

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

[UIKit] UINavigationBar  (0) 2021.10.24
[UIKit] App's Life Cycle  (0) 2021.10.13
[UIKit] UIApplication  (0) 2021.10.08