We built our iPad app for MacOS using Catalyst and I cannot figure out how to get two-finger trackpad scrolling gestures to work in a custom UIView. The standard UIKit components (e.g., UITableView) scroll with the standard two-finger trackpad scrolling gestures. But how do you handle them in a custom UIView?
The custom UIViewViewController adds a typical UIPanGestureRecognizer which invokes the gesture handler method when the trackpad is pressed and I move my finger. But it doesn't invoke the handler with just two fingers brushing the trackpad.