UINavigationController와 UIStoryboardSegue
화면 전환 UINavigationController → 깊이로 들어가는 것. TabBarController UINavigationController NavigationController 는 Navigation Stack 구조로 되어있음. → LIFO 구조로 push하고 pop 한다. RootViewController < ViewController A < ViewController B < ViewController C NavigationController 구현하기 NavigationController 스토리보드 추가 RootView Controller로 만들어준다 ← Relationship Segue 연결 NavigationController를 isInitial 로 체크해서 Entry Point를 만들어준다. UIStoryboardSeque show : 제일 많이 사용함 / 네비게이션 영역에 stack 방식으로 Push됨 show detail : iPad 전용 split view에서 사용 present modally : 화면 전환 완전히X / 모달로 띄움 present as popover : Segue prepare : 네비게이션 하기 전 준비하는 단계! segue 작동방식 destination instancing prepare 호출 segue.destination 은 UIViewController 이니까 타입캐스팅 해줘야 한다!
- HMH