In my app, tapping on an item, copies data to the clipboard rather than showing a modal view. The menu allowed the app to give users a way to edit and delete items by long pressing.
In iOS 13 the following methods related to showing a menu when a user long presses an item in a collection view were depreciated:
collectionView(_:shouldShowMenuForItemAt:)
collectionView(_:canPerformAction:forItemAt:withSender:)
collectionView(_:performAction:forItemAt:withSender:)
I've looked through the WWDC19 sessions and I cannot find any addressing this - What should we be using instead?
In iOS 13 the following methods related to showing a menu when a user long presses an item in a collection view were depreciated:
collectionView(_:shouldShowMenuForItemAt:)
collectionView(_:canPerformAction:forItemAt:withSender:)
collectionView(_:performAction:forItemAt:withSender:)
I've looked through the WWDC19 sessions and I cannot find any addressing this - What should we be using instead?