I am displaying a modal UIViewController
on top of another. If the requisite UIPanGestureRecognizer
triggers, I have an interactive UIPercentDrivenInteractiveTransition
which basically pulls the modal view down to eventually dismiss it.
I notice that the view controller beneath does not receive any of the usual appearance methods when typically presenting and dismissing view controllers:
-viewWillAppear:
,-viewWillDisappear
, etc.
Is there any way, considering that this is an Apple-provided view controller API, to have these methods still be called at the appropriate times during the interaction?