I would like to have a UIScrollView I can interact with (mainly horizontal swipe to display images) BELOW a UITableView.
The idea is to set the UITableView tableHeaderView of the same size than the UIScrollView with a clear backgroundColor and opaque set to NO, and add
[self.view addSubview:self.scrollView belowSubview:self.tableView];
Consequently, the UITableView will progressively cover the image gallery while scrolling - what whould not be the case if I set up directly the UIScrollView as the tableHeaderView or as a section header.
It works (from a visual point of view).
But I cannot interact or swipe on the UIScrollView which is below, everything is intercepted by the tableView. I thought setting clean Color + opaque = NO would do the trick.
Any idea ?
Thanks
Romain