Guest User

Untitled

a guest
Nov 18th, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. func dropInteraction(_ interaction: UIDropInteraction, performDrop session: UIDropSession) {
  2. session.loadObjects(ofClass: NSString.self) { item in
  3. DispatchQueue.main.async {
  4. label.text = item as NSString as String
  5. }
  6. }
  7. }
Add Comment
Please, Sign In to add comment