I have a view controller with this hierarchy:
View Controller:
I want to forward the vertical scrolls from my UIScrollView
to the sibling UITableView
, so that when the user scrolls up on the UIScrollView
, the UITableView
will scroll up instead. What would be the best way to do it?
I have tried these:
scrollViewDidScroll
, it doesn't get called because the contentOffset of the scroll view does not change.UIScrollView
and overriding touchesMoved
, I can't forward the touches to the table view because I don't have a reference to it in this class.If the tableview is contained within the scroll view I believe you can set up the scroll view's gesture recognizers to respond only if the table view's gesture recognizers fail. I haven't had a chance to try this, but you should be able to set up a dependency between the gestures for each of the views.
UITableView* tableView = ...;
UIScrollView* scrollView = ...;
for (UIGestureRecognizer* r in scrollView.gestureRecognizers)
{
for (UIGestureRecognizer* tableRecognizer in tableView.gestureRecognizers)
{
[r requireGestureRecognizerToFail:tableRecognizer];
}
}
This will make your scroll simultaneously with UITableView
and UIScrollView
and apply @Stephen Johnson's block
- (BOOL)gestureRecognizer:(UIPanGestureRecognizer *)gestureRecognizer
shouldRecognizeSimultaneouslyWithGestureRecognizer:(UISwipeGestureRecognizer *)otherGestureRecognizer
{
return YES;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With