Skip to content

Instantly share code, notes, and snippets.

@hidez
Created January 15, 2020 14:44
import UIKit
extension ViewController: UICollectionViewDragDelegate {
func collectionView(_ collectionView: UICollectionView, itemsForBeginning session: UIDragSession, at indexPath: IndexPath) -> [UIDragItem] {
let n = "\(numbers[indexPath.item])"
let itemProvider = NSItemProvider(object: n as NSString)
let dragItem = UIDragItem(itemProvider: itemProvider)
return [dragItem]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment