ViewController LifeCycle
-
iOS) Custom Present 이용시 ViewContoller Life Cycle 문제iOS 2021. 1. 6. 15:46
기존 modalPresentaionStyle을 통해 presentation 방식을 지정했던 것과 다르게 UIPresentaionController를 사용하여 custom presentatin을 진행하는 경우 따로 설정을 해주지 않는 한 ViewController가 메모리에서 제거되지 않는 것으로 보인다. 아니 메모리에서 제거 되는 것이 아닌 viewDidDisappear메서드가 불리지 않는다. 이는 transition과정에서 매우 문제가 되며 present transition에선 영향이 없지만 dismiss transition에선 transitionContext.viewController(keyType:) 메소드를 통해 containerView에 추가하고 호출할 때, 메모리에서 사라지지 않았던 VC의 v..