0

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)];
}

2 Answers2

0

Do you have UIScrollViewDelegate? And set delagate:

rowIdCellScrollView.delegate = self;

And does this scrollViewDidScroll even call?

edzio27
  • 4,126
  • 7
  • 33
  • 48
0

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