Created
May 31, 2020 05:54
-
-
Save aqubi/5fe1ac77c014a296ebd855c03b0d08b3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func tableView(_ tableView: UITableView, itemsForBeginning session: UIDragSession, at indexPath: IndexPath) -> [UIDragItem] { | |
let itemProvider = NSItemProvider(object: "sample name" as NSString) | |
return [UIDragItem(itemProvider: itemProvider)] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment