I have a UICollectionView. Its cell has a UICollectionView inside of it.
I can detect when the cell containing the collectionView is tapped (via didSelectItemAtIndexPath). However, I cannot detect when the cells of the collectionView inside the cell (as depicted by the individual sun icons) are tapped.
User-interaction is enabled on everything. And I've tried overriding the hitTest of the collectionView as described here.
Update: I tried this again in a simple test project and it worked fine. However in my current project for some reason the inner-most nested collectionView (with the sun icons) does not appear in the view debugger.
Notice I made the collectionView background blue and its cells pink. And they do not appear when view debugged, although they appear in the running app?