Is there any way for the drag source in a document based macOS application to get informed about a successful drop while using the draggable and dropTarget approach?
I would need this to remove the data from the document the data was dragged out from.
M Knaup
@Knaup The dropDestination(for:action:isTargeted:) modifier returns a Boolean value which returns true if the drop operation was successful; otherwise, return false.
Its would be within this method you remove your data from the dragged source if the drop was successful.