I am trying to figure out how to change the view in a UICollectionViewCell
that triggers the UICollectionView
's didSelectCellAtIndexPath
. I want to have a top layer that can be tapped to activate, or panned to reveal a lower layer of buttons.
I can add a view on top, and achieve the pan to reveal gesture, but I have to tap the underlying view to trigger didSelect
.
Also, I am not using xib's or storyboards, this is all in code.
Any Ideas?