Question

I have 3 Scrollviews and they should scroll synchron with the other...

But this code doesn't work:

- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
[rowIdCellScrollView setContentOffset:CGPointMake(0, contentScrollView.contentOffset.y)];
[headerScrollView setContentOffset:CGPointMake(contentScrollView.contentOffset.x, 0)];
}
Was it helpful?

Solution 2

I found the solution, the problem was, that i inited the components in layoutsubviews...

OTHER TIPS

Do you have UIScrollViewDelegate? And set delagate:

rowIdCellScrollView.delegate = self;

And does this scrollViewDidScroll even call?

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top