I have 2 descendants of UIScrollView
I have a UITableView
which displays data
and i have a UICollectionView
added above the UITableView
view
| - UITableView
| - UICollectionView
The UITableView
can only scroll vertically and the UICollectionView
can only scroll horizontally. I can only scroll my tableview where the collectionview
isn't overlapping (which is off course expected behaviour) but i need to make it so that i can scroll my tableview
even if i swipe vertically on my collectionview
.
I cannot simply add the collectionview
as a subview of the tableview
because of other reasons (which i know, would make this work)
Is there any other possibility to let de touches from the collectionview
passthrough to the tableview
?