Skip to content

Instantly share code, notes, and snippets.

@paul1893
Last active January 2, 2018 13:15
Show Gist options
  • Save paul1893/cbb8f23252dce73f4a491b71c509ce22 to your computer and use it in GitHub Desktop.
Save paul1893/cbb8f23252dce73f4a491b71c509ce22 to your computer and use it in GitHub Desktop.
drag and drop ios 11 octo article
func dropInteraction(_ interaction: UIDropInteraction, canHandle session: UIDropSession) -> Bool {
let identifiers = [kUTTypeImage as String] // Can be very specific [kUTTypeImagePNG as String] (Only PNG)
return session.hasItemsConforming(toTypeIdentifiers: identifiers) && session.items.count == 1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment