Skip to content

Instantly share code, notes, and snippets.

@aqubi
Created May 30, 2020 15:31
Show Gist options
  • Save aqubi/3611bf0c78c12a94881f62588680431d to your computer and use it in GitHub Desktop.
Save aqubi/3611bf0c78c12a94881f62588680431d to your computer and use it in GitHub Desktop.
func tableView(_ tableView: UITableView, canHandle session: UIDropSession) -> Bool {
if session.canLoadObjects(ofClass: UIImage.self) {
return true
} else {
return false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment