I want to implement Drag from UICollectionView to UITableViewController using the drag and drop delegates
func tableView(_ tableView: UITableView, itemsForBeginning session: UIDragSession, at indexPath: IndexPath) -> [UIDragItem] {
}
func tableView(_ tableView: UITableView, performDropWith coordinator: UITableViewDropCoordinator) {
}
How to achieve this functionality?
from Drag from UITableView and Drop in UICollectionView using Drag-Drop Delegates
No comments:
Post a Comment