I'm hurt to an edge case I guess?
Here is my current view hierarchy of the my problematic top most view controller.
UIView-> UIScrollView-> UIView-> UIStackView-> UICollectionView
My stack view contain multiple arranged views.
What happen is that for some reason my (non scrollable) UICollectionView
is not responding to its delegate didSelectRow method.
It receive touch event, I can even see shoudlHighightCell
being called. But impossible to get the didSelect method called.
It's a reusable component I'm using maybe more than 10 times all across my apps, but in this specific hierarchy, it's not working.
I've tried to remove some gesture, to fiddle with delay touch of the parent UIScrollView
, but it's still not working.
Any clues?
Thanks!