I want to detect if a AQGridCellView is pressed long and instead of selecting it I want to show a menu with custom options. I thought just adding a long press gesture recognizer to a subclass of the cell view will be enough to handle that, but looks like the AQGridView already catches all interactions with the cells.
Does anybody know how to workaround that and recognize a long press on the grid cell?
I got in touch with the developer of the library and found out that this isn't possible with the library itself. But I found a simple workaround to that:
This works fine for my application. Hope this solution will help somebody else too.