For security reasons I want to disable the new iOS 11 drag & drop feature within my whole app. More specifically the drag part.
In iOS 11 it\'s happening by defa
I'm not aware of any way to fully disable the dragging functionality, but there's a way to confine the drag session to your own app only. That should already be a big improvement in terms of security.
Take a look at sessionIsRestrictedToDraggingApplication.
dragInteraction(_:sessionIsRestrictedToDraggingApplication:)
Called to ask your app whether the drag session should be confined to the app in which it begins.