Skip to content

Instantly share code, notes, and snippets.

@icanswiftabit
Created November 16, 2017 10:27
Show Gist options
  • Save icanswiftabit/85b77170fdc7ad23e164cdd5e0c4ab65 to your computer and use it in GitHub Desktop.
Save icanswiftabit/85b77170fdc7ad23e164cdd5e0c4ab65 to your computer and use it in GitHub Desktop.
func dropInteraction(_ interaction: UIDropInteraction, performDrop session: UIDropSession) {
session.loadObjects(ofClass: NSString.self) { item in
DispatchQueue.main.async {
label.text = item as NSString as String
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment