前提・実現したいこと
swiftでiOSアプリを作っています。
2つのcollectionView間でセルをやりとりするため、
UICollectionViewDragDelegate & UICollectionViewDropDelegate で
ドラッグ&ドロップを実装したいと考えています。
発生している問題・エラーメッセージ
collectionView間のセル移動に関しては実現できていますが、
セルをドラッグ中にテキストフィールドに重なると+マークが出て、
実際にドロップもできてしまいます。
ドロップ後はテキストフィールドにitemProviderで指定した文字が入ります。
該当のソースコード
swift
1 2 // MARK: UICollectionViewDragDelegate 3 func collectionView(_ collectionView: UICollectionView, itemsForBeginning session: UIDragSession, at indexPath: IndexPath) -> [UIDragItem] { 4 5 let n = "(indexPath.item)" 6 let itemProvider = NSItemProvider(object: n as NSString) 7 let dragItem = UIDragItem(itemProvider: itemProvider) 8 return [dragItem] 9 } 10 11 12 // MARK: UICollectionViewDropDelegate 13 func collectionView(_ collectionView: UICollectionView, canHandle session: UIDropSession) -> Bool { 14 return session.hasItemsConforming(toTypeIdentifiers: NSString.readableTypeIdentifiersForItemProvider) 15 } 16 17 func collectionView(_ collectionView: UICollectionView, dropSessionDidUpdate session: UIDropSession, withDestinationIndexPath destinationIndexPath: IndexPath?) -> UICollectionViewDropProposal { 18 if session.localDragSession != nil { 19 return UICollectionViewDropProposal(operation: .move, intent: .insertAtDestinationIndexPath) 20 } else { 21 return UICollectionViewDropProposal(operation: .copy, intent: .insertAtDestinationIndexPath) 22 } 23 } 24 25 func collectionView(_ collectionView: UICollectionView, performDropWith coordinator: UICollectionViewDropCoordinator) { 26 let destinationIndexPath: IndexPath //移動先 27 if let indexPath = coordinator.destinationIndexPath, indexPath.row < collectionView.numberOfItems(inSection: 0) { 28 destinationIndexPath = indexPath 29 } else { 30 let section = collectionView.numberOfSections - 1 31 let item = collectionView.numberOfItems(inSection: section) - 1 32 //余白にドロップしたときは、末尾に移動 33 destinationIndexPath = IndexPath(item: item, section: section) 34 } 35 36 switch coordinator.proposal.operation { 37 case .move: 38 let items = coordinator.items 39 if items.contains(where: { $0.sourceIndexPath != nil }) { 40 if items.count == 1, let item = items.first { 41// reorder(collectionView, item: item, to: destinationIndexPath, with: coordinator) //セルの並び替え 42 } 43 } 44 default: 45 return 46 } 47 } 48
試したこと
DragDelegateの let itemProvider = NSItemProvider(object: n as NSString)で
itemProviderに文字を入れているのでtextFieldが反応しているのだと思いますが、
文字以外を入れる方法が分かりませんでした。
ここにセルを入れることが出来れば良いように思うのですが。
また、dropSessionDidUpdateで常に
return UICollectionViewDropProposal(operation: .move, intent: .insertAtDestinationIndexPath)
になるようにしてみましたが、動作は変わりませんでした。
知りたいこと
・textFieldにドロップ出来ないように制御する方法
・ドラッグ可能範囲の外に出ないようにドラッグ中のセルの位置を制御する方法
あなたの回答
tips
プレビュー