Modal의 dismiss 할 때를 알기 위해서 검색하던 중 iOS13부터 native delegate를 지원한다는 것을 알게되었습니다.
현재
Parent VC
ㄴ Modal VC: Custom Navigation(root: VC)
형태로 되어 있습니다.
let vc = customNavigation Class()
self.present(vc, animated: true)
vc.presentationController?.delegate = self
// ModalVC.swift
self.dismiss(animated: true)로 종료시키고 있습니다.
모달을 아래로 잡아당겨서 종료시킬 때는 delegate 전달이 되는데
dismiss는 전달을 못받고 있습니다.