Closed nikilster closed 9 years ago
Did some debugging - I think this is because the view controller is being dismissed with animation - the animation visually finishes before the modal page is removed from the UI View hierarchy / stack. It seems to work if we do
[_containerViewController dismissViewControllerAnimated:NO completion:^{
and dismiss with the viewcontrolleranimated property = NO
@nikilster that is because the transition has "easeOut" curve, so the animation is not finished even though it looks like finished. You could try to disable the animation curve option.
Another question - after I dismiss the modal, the next tap (if I tap quickly) isn't registered by the main view controller. Any thoughts on how to fix this? Thanks!