all white cheat sheet Dana’s Swifty Life

[iOS] View Controller 가 보여지는 방식

View Controller 가 보여지는 방식

Presentation : 기존의 view controller의 content 를 가리면서 새로운 view controller 의 contents 가 modal 방식으로 올라옴

새로운 vc 가 이전 vc 를 가리면서 보여질 때, UIKit 은 이전과 이후 vc 간 관계를 형성해준다. 두 vc 의 다음 property 에 서로를 연결해준다.

var presentedViewController? : UIViewController
var presentingViewController? : UIViewController
presentedViewController presentingViewController
해당 vc 에 의해 presented 된 다음 vc를 가리킴 해당 vc 를 present 해준 이전 vc

Container vc 는 children vc 를 위한 자체 presentaion 방식을 제공하므로, 그 안에서의 전환은 container vc 에서 담당한다.

 


📌 Reference