On iOS 13 we have the beautiful context menu for tableView & collectionView.
I'm using it on UICollectionView like this:
Implementation on 'cellForItemAt indexPath':
let interaction = UIContextMenuInteraction(delegate: self)
cell.moreButton.isUserInteractionEnabled = false
cell.moreButton.tag = indexPath.row
cell.addInteraction(interaction)
Handle the tiger on 'configurationForMenuAtLocation location'
func contextMenuInteraction(_ interaction: UIContextMenuInteraction, configurationForMenuAtLocation location: CGPoint) -> UIContextMenuConfiguration? {
let configuration = UIContextMenuConfiguration(identifier: nil, previewProvider: nil) { suggestedActions in
var actions = [UIAction]()
for item in self.contextMenuItems {
let action = UIAction(title: item.title, image: item.image, identifier: nil, discoverabilityTitle: nil) { _ in
self.didSelectContextMenu(index: 0) <== how pass the index from here?
}
actions.append(action)
}
let cancel = UIAction(title: "Cancel", attributes: .destructive) { _ in}
actions.append(cancel)
return UIMenu(title: "", children: actions)
}
return configuration
}
The question is how should I know which index of collectionView is triggered this menu?