For about 2 weeks I'm trying to find a solution and no luck so far. Here is my problem:
I have a UIControllerView and I want to put 2 UICollectionView
(overlapping collections) one over another.
The problem is that I want to work on my collections in my storyboard. I tried and I can't have them one over another (one keeps moving to the cell of the other one).
I tried to use a ContainerView but I can have only one child per container. Si I added another ContainerView over the first one, but in this case I cannot "touch" a cell of the collection view underneath.
UPDATE: Basically I would like to do something like the Facebook Paper App . One UICollectionView half of the height of the one underneath.
Any idea ?
Thanks.
C.C.