I'm using a context menu in my catalyst app by using
let interaction = UIContextMenuInteraction(delegate: self)
editButton.addInteraction(interaction)
This works fine on Mac and menu is opened when user clicked by using right mouse button.
On the other hand, I need to open the same menu on a normal button click on some cases especially if the user is using the app on iPad. Is there any way to open the same context menu on normal button click/tap event?