When I add a subview below a UICollectionView, sometimes the subview shows up above the UICollectionView cells. Here is the subview insertion code:
[self.collectionView insertSubview:self.garmentView atIndex:0];
Not sure if I'm not following a best practice or otherwise missing something obvious. Any assistance appreciated.
** Edit ** It might be worth noting that this only happens in landscape, when the rightmost cell is zoomed in.