I'm adapting my app to ios13. UISwipeGestureRecognizer
for moving left and right between pages in part of my app worked well in ios12, but now the functions aren't called when the default card presentation modal transition is used. If I force the viewcontroller to be fullscreen it works as before, but I'd rather use the default modal transition option.
I tried overriding gestureRecognizer(:shouldRecognizeSimultaneouslyWith)
(which wasn't called, and didn't work). UIPinchGestureRecognizer
worked normally, as did UIPanGestureRecognizer
. I added my swipeGestureRecognizer in storyboards, and tested with pinchGestureRecognizer in the same way.