Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save CibelePaulinoAndrade/742c361f3c093f82415da4ddbecffdca to your computer and use it in GitHub Desktop.
Save CibelePaulinoAndrade/742c361f3c093f82415da4ddbecffdca to your computer and use it in GitHub Desktop.
dragImageView.isUserInteractionEnabled = true
dropImageView.isUserInteractionEnabled = true
let dragImageInteraction = UIDragInteraction(delegate: self)
dragImageView.addInteraction(dragImageInteraction)
let dropImageInteraction = UIDropInteraction(delegate: self)
dropImageView.addInteraction(dropImageInteraction)
dragTextView.textDragDelegate = self
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment