将图像从UITableView拖放到UICollectionView

时间:2017-06-27 18:25:47

标签: ios swift

在UIViewControler中,我有UITableView和UICollectionView。在UITableView中,它有UIImageView和Label。我想从UITableView拖动图像并放入UICollectionView(UICollectionView只有UIImageView)。 我一直在环顾四周,无法在Swift 3中找到解决方案。 任何人都有任何想法,请帮助。 谢谢。

1 个答案:

答案 0 :(得分:-1)

您必须使用UICollectionViewDragDelegate,UICollectionViewDropDelegate,UITableViewDropDelegate和UITableViewDragDelegate。

我建议您观看WWDC17中的拖放视频:

https://developer.apple.com/videos/play/wwdc2017/223/

您在这里有演示代码:

https://developer.apple.com/sample-code/wwdc/2017/Drag-and-Drop-in-UICollectionView-and-UITableView.zip

希望对您有帮助!