I'd like to turn off the dismiss swipe that iOS 13 puts on any and every formsheet. It seems that setting modalInPresentation isn't enough. I have a 3D view that's displayed as a formsheet on iPad and the implicit dismiss gesture is interfering with our navigation gestures in the 3D view.
How can I remove the gesture?
Well, I got some time to look at iOS 13 issues today, and was able to resolve it by checking to see if both gesture recognizers passed to gestureRecognizer:shouldRecognizeSimultaneouslyWithGestureRecognizer: belong to the set of gesture recognizers that we have attached to the 3D view. Thanks for the pointer.