I have two views in my app – one that uses a SwiftUI view with a gesture (drag gesture), and another that uses UIKit multi touch.
When the multi touch starts, I can continue to use the drag gesture on the SwiftUI view and they work in unison.
However, when I start the drag gesture on the SwiftUI, the UIKit view does not receive any new touches (existing touches with touchesMoved still works).
I’ve found a couple of other posts referring to this issue, but there has been no resolution and those threads are older now.
Is this a “bug” or a “feature”? 🙂
Since I still receive touchesMoved on existing touches and don’t receive new touches when the drag gesture is being used, it seems to point in the direction of “bug”?
Any pointers or tips or solutions greatly appreciated!