jessesquires / jessesquires/ReactiveCollectionsKit
[Delegate] implement additional context menu APIs
- Dominant language
- Swift
- Stars
- 194
- Forks
- 12
- PR merge metrics
- No merged PRs in 30d
Description
Docs: https://developer.apple.com/documentation/uikit/uicollectionviewdelegate#3580853
### Already implemented
```swift
func collectionView(UICollectionView, contextMenuConfigurationForItemAt: IndexPath, point: CGPoint) -> UIContextMenuConfiguration?
```
### NOT implemented
```swift
func collectionView(UICollectionView, previewForDismissingContextMenuWithConfiguration: UIContextMenuConfiguration) -> UITargetedPreview?
func collectionView(UICollectionView, previewForHighlightingContextMenuWithConfiguration: UIContextMenuConfiguration) -> UITargetedPreview?
func collectionView(UICollectionView, willDisplayContextMenu configuration: UIContextMenuConfiguration, animator: UIContextMenuInteractionAnimating?)
func collectionView(UICollectionView, willEndContextMenuInteraction configuration: UIContextMenuConfiguration, animator: UIContextMenuInteractionAnimating?)
func collectionView(UICollectionView, willPerformPreviewActionForMenuWith: UIContextMenuConfiguration, animator: UIContextMenuInteractionCommitAnimating)
```
Contributor guide
Assessment
This issue has not been assessed yet.